FBX animation problem

Started by
1 comment, last by RobTheBloke 17 years, 1 month ago
I'm writing a converter to take some FBX animations exported from Max. The converter is to translate the FBX's into a proprietary format since the final application will not use the Autodesk FBX SDK. To achieve this I am trying to understand exactly how the take nodes and curve nodes work. This is ok, except that if a take node ( KFbxTakeNode ) has a curve node ( KFCurveNode ) but this curve node has NO keys, then how is the global transform of the node calculated ? ( ie. how does the method KFbxNode::GetGlobalFromCurrentTake calculate the transform ? ) I can't find an answer to this in the SDK, and all the examples use the method without explaining how the result is arrived at.... Are there any experts on FBX animation out there ?....
Advertisement
maybe people from this forum:
http://dl3d.free.fr/phpBB2/viewforum.php?f=6
can help you.

personally, I just sample data from FBX rather than dealing with the curves directly, then it's just a case of doing....

fbxTakeNode->GetEulerRotationX()->Evaluate(curr_time)


and then converting to quat or whatever you are planning. With FBX the computation goes something like this for a local space matrix,

 * <pre> * [Rot] * [Post] * [T]<br><br>where <br>S=scale<br>T=translate<br>Pre=KFbxNode::GetPreRotation( KFbxNode::eSOURCE_SET )<br>Post=KFbxNode::GetPostRotation( KFbxNode::eSOURCE_SET )<br>Rot=current fbxTakeNode-&gt;GetEulerRotation#()</pre><br><br>It basically uses the same matrix construction as Maya, i'd check out the docs to MFnTransform and MFnIkJoint in the maya API docs for more info (if you have it available).

This topic is closed to new replies.

Advertisement