mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-04-22 21:59:37 +08:00
13 lines
321 B
Python
13 lines
321 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)()
|