Watch
2
0
Fork
You've already forked raylib-cs
0

add new fields to Mesh type

This commit is contained in:
JupiterRider 2024-12-03 19:20:09 +01:00
commit 0f083d963f

View file

@ -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
/// </summary>
public float* BoneWeights = default;
/// <summary>
/// Bones animated transformation matrices
/// </summary>
public Matrix4x4* BoneMatrices = default;
/// <summary>
/// Number of bones
/// </summary>
public int BoneCount;
#endregion
#region OpenGL identifiers