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