Update raylib_api.* by CI

This commit is contained in:
github-actions[bot] 2024-10-24 10:46:22 +00:00
parent 6ff0b03629
commit cb73970f08
4 changed files with 48 additions and 48 deletions

View file

@ -7598,7 +7598,17 @@ return {
},
{
name = "UpdateModelAnimation",
description = "Update model animation pose",
description = "Update model animation pose (CPU)",
returnType = "void",
params = {
{type = "Model", name = "model"},
{type = "ModelAnimation", name = "anim"},
{type = "int", name = "frame"}
}
},
{
name = "UpdateModelAnimationBoneMatrices",
description = "Update model animation mesh bone matrices (GPU skinning)",
returnType = "void",
params = {
{type = "Model", name = "model"},
@ -7632,16 +7642,6 @@ return {
{type = "ModelAnimation", name = "anim"}
}
},
{
name = "UpdateModelAnimationBoneMatrices",
description = "Update model animation mesh bone matrices (Note GPU skinning does not work on Mac)",
returnType = "void",
params = {
{type = "Model", name = "model"},
{type = "ModelAnimation", name = "anim"},
{type = "int", name = "frame"}
}
},
{
name = "CheckCollisionSpheres",
description = "Check collision between two spheres",