diff --git a/Engine/source/ts/assimp/assimpShapeLoader.cpp b/Engine/source/ts/assimp/assimpShapeLoader.cpp index 88fcc68dd..4a1174391 100644 --- a/Engine/source/ts/assimp/assimpShapeLoader.cpp +++ b/Engine/source/ts/assimp/assimpShapeLoader.cpp @@ -439,21 +439,6 @@ void AssimpShapeLoader::getRootAxisTransform() } } - // ===== SIGN FLIP ===== - if (upSign == -1) - { - rot(0, 2) = -rot(0, 2); - rot(1, 2) = -rot(1, 2); - rot(2, 2) = -rot(2, 2); - } - - if (frontSign == -1) - { - rot(0, 1) = -rot(0, 1); - rot(1, 1) = -rot(1, 1); - rot(2, 1) = -rot(2, 1); - } - ColladaUtils::getOptions().axisCorrectionMat = rot; }