Node.ChildNodes

Node.ChildNodes property

Gets the children nodes.

public IList<Node> ChildNodes { get; }

Property Value

The nodes.

Examples

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

Scene scene = Scene.FromFile("test.fbx");
foreach(var child in scene.RootNode.ChildNodes)
{
    //do your business
}

See Also