Applying changes after review. Merged resources.LICENSE + raylib-cs.Native.csproj only targets dotnet8
This commit is contained in:
parent
94dda71bcf
commit
851029ee0f
7 changed files with 32 additions and 63 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue