mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 22:47:29 -06:00
8 lines
No EOL
220 B
Python
8 lines
No EOL
220 B
Python
from UM.Scene.SceneNodeDecorator import SceneNodeDecorator
|
|
|
|
class MultiMaterialDecorator(SceneNodeDecorator):
|
|
def __init__(self):
|
|
super().__init__()
|
|
|
|
def isMultiMaterial(self):
|
|
return True |