child_nodes property

child_nodes property

Gets the children nodes.

Example

The following code shows how to enumerate child node of root node

from aspose.threed import Scene

scene = Scene.from_file("test.fbx")
for child in scene.root_node.child_nodes:
    pass

Definition:

@property
def child_nodes(self):
    ...

See Also