mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 14:37:29 -06:00
11 lines
No EOL
295 B
Python
11 lines
No EOL
295 B
Python
from UM.Scene.SceneNodeDecorator import SceneNodeDecorator
|
|
|
|
class MultiMaterialDecorator(SceneNodeDecorator):
|
|
def __init__(self):
|
|
super().__init__()
|
|
|
|
def isMultiMaterial(self):
|
|
return True
|
|
|
|
def __deepcopy__(self, memo):
|
|
return MultiMaterialDecorator() |