mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 14:37:29 -06:00
12 lines
329 B
Python
12 lines
329 B
Python
from UM.Scene.SceneNodeDecorator import SceneNodeDecorator
|
|
|
|
|
|
class SliceableObjectDecorator(SceneNodeDecorator):
|
|
def __init__(self) -> None:
|
|
super().__init__()
|
|
|
|
def isSliceable(self) -> bool:
|
|
return True
|
|
|
|
def __deepcopy__(self, memo) -> "SliceableObjectDecorator":
|
|
return type(self)()
|