2
0
mirror of https://github.com/raylib-cs/raylib-cs synced 2025-04-03 11:09:40 -04:00

Simplify LoadModelAnimations util

This commit is contained in:
ChrisDill 2023-10-29 09:45:02 +00:00
parent 00309f8667
commit 4a58a07dcd

View File

@ -916,19 +916,12 @@ public static unsafe partial class Raylib
}
/// <summary>Load model animations from file</summary>
public static ReadOnlySpan<ModelAnimation> LoadModelAnimations(string fileName, ref uint animCount)
public static ModelAnimation* LoadModelAnimations(string fileName, ref uint animCount)
{
using var str1 = fileName.ToAnsiBuffer();
fixed (uint* p = &animCount)
{
ModelAnimation* modelAnimations = LoadModelAnimations(str1.AsPointer(), p);
if ((IntPtr)modelAnimations == IntPtr.Zero)
{
throw new ApplicationException("Failed to load animation");
}
return new ReadOnlySpan<ModelAnimation>(modelAnimations, (int)animCount);
return LoadModelAnimations(str1.AsPointer(), p);
}
}