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

Applying changes after review. Merged resources.LICENSE + raylib-cs.Native.csproj only targets dotnet8

This commit is contained in:
Meatcorps 2026-05-21 14:28:15 +02:00
commit 851029ee0f
7 changed files with 32 additions and 63 deletions

View file

@ -76,13 +76,8 @@ public class LoadingGltf
// Update model animation
animCurrentFrame = (animCurrentFrame + 1)%anims[animIndex].KeyFrameCount;
animCurrentFrame = (animCurrentFrame + 1) % anims[animIndex].KeyFrameCount;
UpdateModelAnimation(model, anims[animIndex], (float)animCurrentFrame);
if (animCurrentFrame >= anims[0].KeyFrameCount)
{
animCurrentFrame = 0;
}
//----------------------------------------------------------------------------------
// Draw