Update Model.cs
This commit is contained in:
parent
efea2e24c6
commit
715aaeedf0
1 changed files with 2 additions and 2 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue