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

Update Model.cs

This commit is contained in:
MrScautHD 2023-11-19 12:32:06 +01:00
commit efea2e24c6

View file

@ -105,9 +105,9 @@ public readonly unsafe partial struct ModelAnimation
public readonly Transform** FramePoses;
/// <summary>
/// Animation name
/// Animation name (char[32])
/// </summary>
public readonly char[] Name; // TODO CHECK IF IT WORKS
public readonly sbyte Name;
/// <inheritdoc cref="FramePoses"/>
public FramePosesCollection FramePosesColl => new(FramePoses, FrameCount, BoneCount);