mirror of
https://github.com/raysan5/raylib.git
synced 2026-07-11 03:39:34 +00:00
rlparser: update raylib_api.* by CI
This commit is contained in:
@@ -968,7 +968,7 @@
|
||||
"description": "Skeleton, animation bones hierarchy",
|
||||
"fields": [
|
||||
{
|
||||
"type": "int",
|
||||
"type": "unsigned int",
|
||||
"name": "boneCount",
|
||||
"description": "Number of bones"
|
||||
},
|
||||
@@ -1045,7 +1045,7 @@
|
||||
"description": "Animation name"
|
||||
},
|
||||
{
|
||||
"type": "int",
|
||||
"type": "unsigned int",
|
||||
"name": "boneCount",
|
||||
"description": "Number of bones (per pose)"
|
||||
},
|
||||
|
||||
@@ -968,7 +968,7 @@ return {
|
||||
description = "Skeleton, animation bones hierarchy",
|
||||
fields = {
|
||||
{
|
||||
type = "int",
|
||||
type = "unsigned int",
|
||||
name = "boneCount",
|
||||
description = "Number of bones"
|
||||
},
|
||||
@@ -1045,7 +1045,7 @@ return {
|
||||
description = "Animation name"
|
||||
},
|
||||
{
|
||||
type = "int",
|
||||
type = "unsigned int",
|
||||
name = "boneCount",
|
||||
description = "Number of bones (per pose)"
|
||||
},
|
||||
|
||||
@@ -611,7 +611,7 @@
|
||||
((name "ModelSkeleton")
|
||||
(description "Skeleton, animation bones hierarchy")
|
||||
(fields
|
||||
((type "int")
|
||||
((type "unsigned int")
|
||||
(name "boneCount")
|
||||
(description "Number of bones"))
|
||||
((type "BoneInfo *")
|
||||
@@ -658,7 +658,7 @@
|
||||
((type "char[32]")
|
||||
(name "name")
|
||||
(description "Animation name"))
|
||||
((type "int")
|
||||
((type "unsigned int")
|
||||
(name "boneCount")
|
||||
(description "Number of bones (per pose)"))
|
||||
((type "int")
|
||||
|
||||
@@ -448,7 +448,7 @@ Struct 20: BoneInfo (2 fields)
|
||||
Struct 21: ModelSkeleton (3 fields)
|
||||
Name: ModelSkeleton
|
||||
Description: Skeleton, animation bones hierarchy
|
||||
Field[1]: int boneCount // Number of bones
|
||||
Field[1]: unsigned int boneCount // Number of bones
|
||||
Field[2]: BoneInfo * bones // Bones information (skeleton)
|
||||
Field[3]: ModelAnimPose bindPose // Bones base transformation (Transform[])
|
||||
Struct 22: Model (9 fields)
|
||||
@@ -467,7 +467,7 @@ Struct 23: ModelAnimation (4 fields)
|
||||
Name: ModelAnimation
|
||||
Description: ModelAnimation, contains a full animation sequence
|
||||
Field[1]: char[32] name // Animation name
|
||||
Field[2]: int boneCount // Number of bones (per pose)
|
||||
Field[2]: unsigned int boneCount // Number of bones (per pose)
|
||||
Field[3]: int keyframeCount // Number of animation key frames
|
||||
Field[4]: ModelAnimPose * keyframePoses // Animation sequence keyframe poses [keyframe][pose]
|
||||
Struct 24: Ray (2 fields)
|
||||
|
||||
@@ -201,7 +201,7 @@
|
||||
<Field type="int" name="parent" desc="Bone parent" />
|
||||
</Struct>
|
||||
<Struct name="ModelSkeleton" fieldCount="3" desc="Skeleton, animation bones hierarchy">
|
||||
<Field type="int" name="boneCount" desc="Number of bones" />
|
||||
<Field type="unsigned int" name="boneCount" desc="Number of bones" />
|
||||
<Field type="BoneInfo *" name="bones" desc="Bones information (skeleton)" />
|
||||
<Field type="ModelAnimPose" name="bindPose" desc="Bones base transformation (Transform[])" />
|
||||
</Struct>
|
||||
@@ -218,7 +218,7 @@
|
||||
</Struct>
|
||||
<Struct name="ModelAnimation" fieldCount="4" desc="ModelAnimation, contains a full animation sequence">
|
||||
<Field type="char[32]" name="name" desc="Animation name" />
|
||||
<Field type="int" name="boneCount" desc="Number of bones (per pose)" />
|
||||
<Field type="unsigned int" name="boneCount" desc="Number of bones (per pose)" />
|
||||
<Field type="int" name="keyframeCount" desc="Number of animation key frames" />
|
||||
<Field type="ModelAnimPose *" name="keyframePoses" desc="Animation sequence keyframe poses [keyframe][pose]" />
|
||||
</Struct>
|
||||
|
||||
Reference in New Issue
Block a user