mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-05-07 14:19:01 +08:00
10 lines
220 B
Python
10 lines
220 B
Python
from UM.Scene.SceneNodeDecorator import SceneNodeDecorator
|
|
|
|
|
|
class SliceableObjectDecorator(SceneNodeDecorator):
|
|
def __init__(self):
|
|
super().__init__()
|
|
|
|
def isSliceable(self):
|
|
return True
|