Skip to content

Instantly share code, notes, and snippets.

@fereria
Created February 14, 2020 14:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fereria/7755f4da390401b53b10a803419bda29 to your computer and use it in GitHub Desktop.
Save fereria/7755f4da390401b53b10a803419bda29 to your computer and use it in GitHub Desktop.
void RecursiveNode(FbxNode *pNode)
{
int childNodeNum = pNode->GetChildCount();
for (int i = 0; i < childNodeNum; i++)
{
FbxNode *pChild = pNode->GetChild(i);
RecursiveNode(pChild);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment