Skip to content

Commit

Permalink
Update raylib_api.* by CI
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Sep 15, 2024
1 parent ddc523f commit 68e7cad
Show file tree
Hide file tree
Showing 4 changed files with 238 additions and 197 deletions.
21 changes: 20 additions & 1 deletion parser/output/raylib_api.json
Original file line number Diff line number Diff line change
Expand Up @@ -8844,6 +8844,25 @@
}
]
},
{
"name": "ColorLerp",
"description": "Mix 2 Colors Together",
"returnType": "Color",
"params": [
{
"type": "Color",
"name": "color1"
},
{
"type": "Color",
"name": "color2"
},
{
"type": "float",
"name": "d"
}
]
},
{
"name": "GetFontDefault",
"description": "Get the default Font",
Expand All @@ -8862,7 +8881,7 @@
},
{
"name": "LoadFontEx",
"description": "Load font from file with extended parameters, use NULL for codepoints and 0 for codepointCount to load the default character setFont",
"description": "Load font from file with extended parameters, use NULL for codepoints and 0 for codepointCount to load the default character set, font size is provided in pixels height",
"returnType": "Font",
"params": [
{
Expand Down
12 changes: 11 additions & 1 deletion parser/output/raylib_api.lua
Original file line number Diff line number Diff line change
Expand Up @@ -6414,6 +6414,16 @@ return {
{type = "int", name = "format"}
}
},
{
name = "ColorLerp",
description = "Mix 2 Colors Together",
returnType = "Color",
params = {
{type = "Color", name = "color1"},
{type = "Color", name = "color2"},
{type = "float", name = "d"}
}
},
{
name = "GetFontDefault",
description = "Get the default Font",
Expand All @@ -6429,7 +6439,7 @@ return {
},
{
name = "LoadFontEx",
description = "Load font from file with extended parameters, use NULL for codepoints and 0 for codepointCount to load the default character setFont",
description = "Load font from file with extended parameters, use NULL for codepoints and 0 for codepointCount to load the default character set, font size is provided in pixels height",
returnType = "Font",
params = {
{type = "const char *", name = "fileName"},
Expand Down
Loading

0 comments on commit 68e7cad

Please sign in to comment.