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

Update Model.cs

This commit is contained in:
MrScautHD 2023-11-19 12:52:20 +01:00
commit 715aaeedf0

View file

@ -79,7 +79,7 @@ public unsafe partial struct Model
/// Model animation
/// </summary>
[StructLayout(LayoutKind.Sequential)]
public readonly unsafe partial struct ModelAnimation
public unsafe partial struct ModelAnimation
{
/// <summary>
/// Number of bones
@ -107,7 +107,7 @@ public readonly unsafe partial struct ModelAnimation
/// <summary>
/// Animation name (char[32])
/// </summary>
public readonly sbyte Name;
public fixed sbyte Name[32];
/// <inheritdoc cref="FramePoses"/>
public FramePosesCollection FramePosesColl => new(FramePoses, FrameCount, BoneCount);