We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6d9d02c + b012311 commit 16605e9Copy full SHA for 16605e9
include/MeshUnmanaged.hpp
@@ -5,6 +5,7 @@
5
#include <vector>
6
7
#include "./BoundingBox.hpp"
8
+#include "./Matrix.hpp"
9
#include "./Model.hpp"
10
#include "./raylib-cpp-utils.hpp"
11
#include "./raylib.hpp"
@@ -37,6 +38,7 @@ class MeshUnmanaged : public ::Mesh {
37
38
animNormals = nullptr;
39
boneIds = nullptr;
40
boneWeights = nullptr;
41
+ boneMatrices = nullptr;
42
vaoId = 0;
43
vboId = nullptr;
44
}
@@ -242,6 +244,7 @@ class MeshUnmanaged : public ::Mesh {
242
244
animNormals = mesh.animNormals;
243
245
boneIds = mesh.boneIds;
246
boneWeights = mesh.boneWeights;
247
+ boneMatrices = mesh.boneMatrices;
248
vaoId = mesh.vaoId;
249
vboId = mesh.vboId;
250
0 commit comments