Skip to content

Commit

Permalink
Add sound, shader functions
Browse files Browse the repository at this point in the history
  • Loading branch information
baudaux committed Nov 6, 2024
1 parent a388f91 commit 6bfdad9
Show file tree
Hide file tree
Showing 4 changed files with 582 additions and 315 deletions.
25 changes: 24 additions & 1 deletion api/raylib_api.json
Original file line number Diff line number Diff line change
Expand Up @@ -9889,6 +9889,29 @@
}
]
},
{
"name": "SetModelMaterialTexture",
"description": "Set the texture of a material of a model",
"returnType": "voiod",
"params": [
{
"type": "Model",
"name": "model"
},
{
"type": "int",
"name": "material"
},
{
"type": "int",
"name": "map"
},
{
"type": "Texture",
"name": "texture"
}
]
},
{
"name": "GetModelBoundingBox",
"description": "Compute model bounding box limits (considers all meshes)",
Expand Down Expand Up @@ -10596,7 +10619,7 @@
"returnType": "void",
"params": [
{
"type": "ModelAnimation *",
"type": "ModelAnimation[]",
"name": "animations"
},
{
Expand Down
1 change: 1 addition & 0 deletions src/gen.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python3 raylib_qjs.py ../api/raylib_api.json ../api/rcamera_api.json ../api/raygui_api.json ../api/raymath_api.json > raylib_qjs.c
Loading

0 comments on commit 6bfdad9

Please sign in to comment.