mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-07 06:57:28 -06:00
12 lines
283 B
Python
12 lines
283 B
Python
from UM.Scene.SceneNodeDecorator import SceneNodeDecorator
|
|
|
|
|
|
class SliceableObjectDecorator(SceneNodeDecorator):
|
|
def __init__(self):
|
|
super().__init__()
|
|
|
|
def isSliceable(self):
|
|
return True
|
|
|
|
def __deepcopy__(self, memo):
|
|
return type(self)()
|