summaryrefslogtreecommitdiffstats
path: root/AssetLoader/interface
diff options
context:
space:
mode:
Diffstat (limited to 'AssetLoader/interface')
-rw-r--r--AssetLoader/interface/GLTFLoader.hpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/AssetLoader/interface/GLTFLoader.hpp b/AssetLoader/interface/GLTFLoader.hpp
index 2d10900..a9858e8 100644
--- a/AssetLoader/interface/GLTFLoader.hpp
+++ b/AssetLoader/interface/GLTFLoader.hpp
@@ -186,11 +186,8 @@ struct Mesh
struct TransformData
{
- static constexpr Uint32 MaxNumJoints = 128u;
-
- float4x4 matrix;
- float4x4 jointMatrix[MaxNumJoints] = {};
- int jointcount = 0;
+ float4x4 matrix;
+ std::vector<float4x4> jointMatrices;
};
TransformData Transforms;