diff --git a/Raylib-cs/types/Mesh.cs b/Raylib-cs/types/Mesh.cs index e4bb2c4..16733c4 100644 --- a/Raylib-cs/types/Mesh.cs +++ b/Raylib-cs/types/Mesh.cs @@ -1,4 +1,5 @@ using System; +using System.Numerics; using System.Runtime.InteropServices; namespace Raylib_cs; @@ -202,6 +203,16 @@ public unsafe partial struct Mesh /// public float* BoneWeights = default; + /// + /// Bones animated transformation matrices + /// + public Matrix4x4* BoneMatrices = default; + + /// + /// Number of bones + /// + public int BoneCount; + #endregion #region OpenGL identifiers