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

Improved XML comments for consistency, fixed spacing and formatting across examples, added new resources to resources.LICENSE.

This commit is contained in:
Meatcorps 2026-05-22 10:07:42 +02:00
commit cb77e4f195
8 changed files with 113 additions and 63 deletions

View file

@ -21,7 +21,6 @@
********************************************************************************************/
using System.Numerics;
using System.Runtime.InteropServices;
using static Raylib_cs.Raylib;
namespace Examples.Models;
@ -67,11 +66,11 @@ public class LoadingGltf
if (IsKeyPressed(KeyboardKey.Right))
{
animIndex = (animIndex + 1)%anims.Length;
animIndex = (animIndex + 1) % anims.Length;
}
else if (IsKeyPressed(KeyboardKey.Left))
{
animIndex = (animIndex + anims.Length - 1)%anims.Length;
animIndex = (animIndex + anims.Length - 1) % anims.Length;
}