mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-04 14:48:47 +00:00
Fix ModelAnimation in raylib.odin missing a field.
This commit is contained in:
Vendored
+1
@@ -425,6 +425,7 @@ ModelAnimation :: struct {
|
|||||||
frameCount: c.int, // Number of animation frames
|
frameCount: c.int, // Number of animation frames
|
||||||
bones: [^]BoneInfo, // Bones information (skeleton)
|
bones: [^]BoneInfo, // Bones information (skeleton)
|
||||||
framePoses: [^][^]Transform, // Poses array by frame
|
framePoses: [^][^]Transform, // Poses array by frame
|
||||||
|
name: [32]u8, // Animation name
|
||||||
}
|
}
|
||||||
|
|
||||||
// Ray type (useful for raycast)
|
// Ray type (useful for raycast)
|
||||||
|
|||||||
Reference in New Issue
Block a user