1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-06-27 16:36:03 +00:00

Revert "DEBUGGERY"

This reverts commit e1becd8a390bbb2396808559bb3ab00917a28322.
This commit is contained in:
Lars Mueller 2025-01-26 00:41:05 +01:00
parent 9b87f4d294
commit 15da2d3d25
3 changed files with 1 additions and 22 deletions

View file

@ -17,7 +17,6 @@
#include <cassert>
#include <cstddef>
#include <variant>
#include <iostream>
#include <vector>
#include <cassert>
@ -468,7 +467,6 @@ SkinnedMesh *SkinnedMeshBuilder::finalize()
else
matrices.push_back(std::get<core::Transform>(joint->transform).buildMatrix());
}
auto local_matrices = matrices;
calculateGlobalMatrices(matrices);
@ -483,10 +481,6 @@ SkinnedMesh *SkinnedMeshBuilder::finalize()
SSkinMeshBuffer *Buffer = (*SkinningBuffers)[attachedMeshIdx];
Buffer->Transformation = matrices[i];
}
std::cout << "Joint Name: " << joint->Name.value_or("unnamed") << std::endl;
std::cout << "Local: " << local_matrices[i] << std::endl;
std::cout << "Global: " << matrices[i] << std::endl;
std::cout << "Global Inverse: " << joint->GlobalInversedMatrix.value() << std::endl;
}
recalculateBaseBoundingBoxes();