mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-05-14 02:18:03 +08:00
8 lines
220 B
Python
8 lines
220 B
Python
from UM.Scene.SceneNodeDecorator import SceneNodeDecorator
|
|
|
|
class MultiMaterialDecorator(SceneNodeDecorator):
|
|
def __init__(self):
|
|
super().__init__()
|
|
|
|
def isMultiMaterial(self):
|
|
return True |