Fix ModelAnimation in raylib.odin missing a field.

This commit is contained in:
Karl Zylinski
2024-02-26 13:32:16 +01:00
parent a642ea0b28
commit ae67f37fc1

View File

@@ -425,6 +425,7 @@ ModelAnimation :: struct {
frameCount: c.int, // Number of animation frames
bones: [^]BoneInfo, // Bones information (skeleton)
framePoses: [^][^]Transform, // Poses array by frame
name: [32]u8, // Animation name
}
// Ray type (useful for raycast)