From 3283a0193a6dfb3d808eab6db1a8b4cb8ee92893 Mon Sep 17 00:00:00 2001 From: lzwdgc Date: Wed, 9 Dec 2020 05:08:21 +0300 Subject: [PATCH] Misc. --- src/mod_converter/fbx.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/mod_converter/fbx.cpp b/src/mod_converter/fbx.cpp index 1cab487..eac8ccb 100644 --- a/src/mod_converter/fbx.cpp +++ b/src/mod_converter/fbx.cpp @@ -131,6 +131,10 @@ void model::printFbx(const std::string &fn, AxisSystem as) const // Prepare the FBX SDK. InitializeSdkObjects(lSdkManager, lScene); + // convert scene to AIM coordinate system + //FbxAxisSystem aim_as(FbxAxisSystem::eYAxis, FbxAxisSystem::eParityEven, FbxAxisSystem::eRightHanded); + //aim_as.ConvertScene(lScene); + // Create the scene. CreateScene(*this, fn, lSdkManager, lScene);