mirror of
https://github.com/raysan5/raylib.git
synced 2026-02-14 17:59:17 -05:00
rlparser: update raylib_api.* by CI
This commit is contained in:
@ -1029,6 +1029,11 @@
|
|||||||
"name": "ModelAnimation",
|
"name": "ModelAnimation",
|
||||||
"description": "ModelAnimation",
|
"description": "ModelAnimation",
|
||||||
"fields": [
|
"fields": [
|
||||||
|
{
|
||||||
|
"type": "char[32]",
|
||||||
|
"name": "name",
|
||||||
|
"description": "Animation name"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"type": "int",
|
"type": "int",
|
||||||
"name": "boneCount",
|
"name": "boneCount",
|
||||||
@ -1048,11 +1053,6 @@
|
|||||||
"type": "Transform **",
|
"type": "Transform **",
|
||||||
"name": "framePoses",
|
"name": "framePoses",
|
||||||
"description": "Poses array by frame"
|
"description": "Poses array by frame"
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "char[32]",
|
|
||||||
"name": "name",
|
|
||||||
"description": "Animation name"
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|||||||
@ -1029,6 +1029,11 @@ return {
|
|||||||
name = "ModelAnimation",
|
name = "ModelAnimation",
|
||||||
description = "ModelAnimation",
|
description = "ModelAnimation",
|
||||||
fields = {
|
fields = {
|
||||||
|
{
|
||||||
|
type = "char[32]",
|
||||||
|
name = "name",
|
||||||
|
description = "Animation name"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
type = "int",
|
type = "int",
|
||||||
name = "boneCount",
|
name = "boneCount",
|
||||||
@ -1048,11 +1053,6 @@ return {
|
|||||||
type = "Transform **",
|
type = "Transform **",
|
||||||
name = "framePoses",
|
name = "framePoses",
|
||||||
description = "Poses array by frame"
|
description = "Poses array by frame"
|
||||||
},
|
|
||||||
{
|
|
||||||
type = "char[32]",
|
|
||||||
name = "name",
|
|
||||||
description = "Animation name"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
@ -466,11 +466,11 @@ Struct 21: Model (9 fields)
|
|||||||
Struct 22: ModelAnimation (5 fields)
|
Struct 22: ModelAnimation (5 fields)
|
||||||
Name: ModelAnimation
|
Name: ModelAnimation
|
||||||
Description: ModelAnimation
|
Description: ModelAnimation
|
||||||
Field[1]: int boneCount // Number of bones
|
Field[1]: char[32] name // Animation name
|
||||||
Field[2]: int frameCount // Number of animation frames
|
Field[2]: int boneCount // Number of bones
|
||||||
Field[3]: BoneInfo * bones // Bones information (skeleton)
|
Field[3]: int frameCount // Number of animation frames
|
||||||
Field[4]: Transform ** framePoses // Poses array by frame
|
Field[4]: BoneInfo * bones // Bones information (skeleton)
|
||||||
Field[5]: char[32] name // Animation name
|
Field[5]: Transform ** framePoses // Poses array by frame
|
||||||
Struct 23: Ray (2 fields)
|
Struct 23: Ray (2 fields)
|
||||||
Name: Ray
|
Name: Ray
|
||||||
Description: Ray, ray for raycasting
|
Description: Ray, ray for raycasting
|
||||||
|
|||||||
@ -214,11 +214,11 @@
|
|||||||
<Field type="Transform *" name="bindPose" desc="Bones base transformation (pose)" />
|
<Field type="Transform *" name="bindPose" desc="Bones base transformation (pose)" />
|
||||||
</Struct>
|
</Struct>
|
||||||
<Struct name="ModelAnimation" fieldCount="5" desc="ModelAnimation">
|
<Struct name="ModelAnimation" fieldCount="5" desc="ModelAnimation">
|
||||||
|
<Field type="char[32]" name="name" desc="Animation name" />
|
||||||
<Field type="int" name="boneCount" desc="Number of bones" />
|
<Field type="int" name="boneCount" desc="Number of bones" />
|
||||||
<Field type="int" name="frameCount" desc="Number of animation frames" />
|
<Field type="int" name="frameCount" desc="Number of animation frames" />
|
||||||
<Field type="BoneInfo *" name="bones" desc="Bones information (skeleton)" />
|
<Field type="BoneInfo *" name="bones" desc="Bones information (skeleton)" />
|
||||||
<Field type="Transform **" name="framePoses" desc="Poses array by frame" />
|
<Field type="Transform **" name="framePoses" desc="Poses array by frame" />
|
||||||
<Field type="char[32]" name="name" desc="Animation name" />
|
|
||||||
</Struct>
|
</Struct>
|
||||||
<Struct name="Ray" fieldCount="2" desc="Ray, ray for raycasting">
|
<Struct name="Ray" fieldCount="2" desc="Ray, ray for raycasting">
|
||||||
<Field type="Vector3" name="position" desc="Ray position (origin)" />
|
<Field type="Vector3" name="position" desc="Ray position (origin)" />
|
||||||
|
|||||||
Reference in New Issue
Block a user