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

@ -111,7 +111,7 @@ core.register_entity("testentities:cool_guy", {
},
},
on_activate = function(self)
self.object:set_animation({x = 15, y = 15}, 0, 0, true)
self.object:set_animation({x = 0, y = 29}, 30, 0, true)
end,
})

View file

@ -13,7 +13,6 @@
#include "rect.h"
#include <cassert>
#include "IrrCompileConfig.h" // for IRRLICHT_API
#include <ostream>
namespace irr
{
@ -89,20 +88,6 @@ public:
{
return M[index];
}
//! Debug print the matrix
friend std::ostream& operator<<(std::ostream& os, const CMatrix4<T>& matrix)
{
os << "Matrix4:" << std::endl;
for (int row = 0; row < 4; ++row)
{
for (int col = 0; col < 4; ++col)
{
os << matrix(row, col) << " ";
}
os << std::endl;
}
return os;
}
//! Simple operator for linearly accessing every element of the matrix.
const T &operator[](u32 index) const { return M[index]; }

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();