Update raylib_api.* by CI

This commit is contained in:
github-actions[bot] 2024-09-15 10:56:01 +00:00
parent ddc523ffbe
commit 68e7cadabc
4 changed files with 238 additions and 197 deletions

View file

@ -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",
@ -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"},