Merge pull request #3231 from karl-zylinski/raylib-model-animation-binding-fix

Fix ModelAnimation in raylib.odin missing a field
This commit is contained in:
gingerBill
2024-02-26 12:57:39 +00:00
committed by GitHub

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)