Added traverse the AnimationPath callbacks.

This commit is contained in:
Robert Osfield 2002-09-30 16:50:16 +00:00
parent 5fd86440b3
commit af5f5e5a3f
2 changed files with 4 additions and 0 deletions

View File

@ -47,4 +47,6 @@ void MatrixTransform::AnimationPathCallback::operator()(Node* node, NodeVisitor*
mt->setMatrix(matrix);
}
}
// must call any nested node callbacks and continue subgraph traversal.
traverse(node,nv);
}

View File

@ -58,4 +58,6 @@ void PositionAttitudeTransform::AnimationPathCallback::operator()(Node* node, No
pat->setAttitude(cp._rotation);
}
}
// must call any nested node callbacks and continue subgraph traversal.
traverse(node,nv);
}