MultiMaterialDecorator.py 295 B

1234567891011
  1. from UM.Scene.SceneNodeDecorator import SceneNodeDecorator
  2. class MultiMaterialDecorator(SceneNodeDecorator):
  3. def __init__(self):
  4. super().__init__()
  5. def isMultiMaterial(self):
  6. return True
  7. def __deepcopy__(self, memo):
  8. return MultiMaterialDecorator()