Skip to content

Commit

Permalink
Merge pull request #1409 from ymollard/master
Browse files Browse the repository at this point in the history
Corrected some calls to old functions of the FBX API
  • Loading branch information
seanpaultaylor committed Jan 13, 2014
2 parents a9788b5 + 56e6532 commit e4cce6c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/encoder/src/FBXSceneEncoder.cpp
Expand Up @@ -442,10 +442,10 @@ void FBXSceneEncoder::loadAnimationLayer(FbxAnimLayer* fbxAnimLayer, FbxNode* fb

void FBXSceneEncoder::loadAnimations(FbxScene* fbxScene, const EncoderArguments& arguments)
{
FbxAnimEvaluator* evaluator = fbxScene->GetEvaluator();
FbxAnimEvaluator* evaluator = fbxScene->GetAnimationEvaluator();
if (!evaluator)
return;
FbxAnimStack* animStack = evaluator->GetContext();
FbxAnimStack* animStack = fbxScene->GetCurrentAnimationStack();
if (!animStack)
return;

Expand Down

0 comments on commit e4cce6c

Please sign in to comment.