Show in Contents
![](../images/show_in_contents.gif)
Add to Favorites
![](../images/add_favorite.gif)
Home: Autodesk FBX SDK Progammer's Guide
Getting child nodes recursively
![](./../images/nav-prev-xp.gif)
Traversing the Scene Graph
![](./../images/nav-up-xp.gif)
Getting the properties of a node as a point in space
Most relationships are
two-way
You can get from a node a reference to
its parent, as well as to the scene that contains it:
KFbxNode myParentNode = pNode->GetParent();
KFbxScene myScene = pNode->GetScene();
In general, all relationships
in FBX are two-way: if FBX object A has a reference to FBX object
B, then object B will also have a reference to object A. For example:
- A child node “knows” its parent, and
a parent node knows each of its children.
- A node knows its scene, and a scene knows
the root node of the tree that contains all nodes in the scene.
- A node knows its constraints, and a constraint
knows which nodes it constrains.
These two-way relationships
between FBX objects are managed by connections,
an FBX data structure. See Connections.