UpdateModelAnimationBones added
This commit is contained in:
parent
b611cf7972
commit
9c24eb6539
1 changed files with 4 additions and 0 deletions
|
|
@ -2605,6 +2605,10 @@ public static unsafe partial class Raylib
|
||||||
[DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
[DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||||
public static extern void UpdateModelAnimation(Model model, ModelAnimation anim, int frame);
|
public static extern void UpdateModelAnimation(Model model, ModelAnimation anim, int frame);
|
||||||
|
|
||||||
|
/// <summary>Update model animation mesh bone matrices (GPU skinning)</summary>
|
||||||
|
[DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||||
|
public static extern void UpdateModelAnimationBones(Model model, ModelAnimation anim, int frame);
|
||||||
|
|
||||||
/// <summary>Unload animation data</summary>
|
/// <summary>Unload animation data</summary>
|
||||||
[DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
[DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||||
public static extern void UnloadModelAnimation(ModelAnimation anim);
|
public static extern void UnloadModelAnimation(ModelAnimation anim);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue