diff --git a/src/mod_converter/fbx.cpp b/src/mod_converter/fbx.cpp index 967dc7c..0c14a1b 100644 --- a/src/mod_converter/fbx.cpp +++ b/src/mod_converter/fbx.cpp @@ -221,6 +221,11 @@ void ConvertScene(FbxScene* lScene, AxisSystem as) case AxisSystem::eDirectX: FbxAxisSystem::DirectX.ConvertScene(lScene); break; + case AxisSystem::eWindows3DViewer: + // UpVector = +Z, FrontVector = +Y, CoordSystem = +X (RightHanded) + // UpVector = ZAxis, FrontVector = ParityOdd, CoordSystem = RightHanded + FbxAxisSystem(FbxAxisSystem::eZAxis, FbxAxisSystem::eParityOdd, FbxAxisSystem::eRightHanded).ConvertScene(lScene); + break; } }