excluded property

excluded property

Gets or sets whether to exclude this node and all child nodes/entities during exporting.

Example

The following code shows how to exclude specified node from exporting

from aspose.threed import Scene
from aspose.threed.entities import Box

scene = Scene()
scene.root_node.create_child_node("excluded", Box()).excluded = True
scene.root_node.create_child_node("not excluded", Box())
scene.save("output.usdz")

Definition:

@property
def excluded(self):
    ...
@excluded.setter
def excluded(self, value):
    ...

See Also