From cc17dcdc17ee1b112fb311253e21bd5b0544c436 Mon Sep 17 00:00:00 2001 From: marauder2k7 Date: Wed, 10 Dec 2025 08:21:03 +0000 Subject: [PATCH] Update assimpShapeLoader.cpp signage still causes issues --- Engine/source/ts/assimp/assimpShapeLoader.cpp | 15 --------------- 1 file changed, 15 deletions(-) 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; }