mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-05-30 01:55:55 +08:00
11 lines
295 B
Python
11 lines
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() |