Browse Source

Update raylib_api.* by CI

pull/3849/head
github-actions[bot] 10 months ago
parent
commit
d3f2d94f23
4 changed files with 238 additions and 204 deletions
  1. +15
    -0
      parser/output/raylib_api.json
  2. +9
    -0
      parser/output/raylib_api.lua
  3. +209
    -203
      parser/output/raylib_api.txt
  4. +5
    -1
      parser/output/raylib_api.xml

+ 15
- 0
parser/output/raylib_api.json View File

@ -8368,6 +8368,21 @@
} }
] ]
}, },
{
"name": "ColorIsEqual",
"description": "Check if two colors are equal",
"returnType": "bool",
"params": [
{
"type": "Color",
"name": "col1"
},
{
"type": "Color",
"name": "col2"
}
]
},
{ {
"name": "Fade", "name": "Fade",
"description": "Get color with alpha applied, alpha goes from 0.0f to 1.0f", "description": "Get color with alpha applied, alpha goes from 0.0f to 1.0f",

+ 9
- 0
parser/output/raylib_api.lua View File

@ -6154,6 +6154,15 @@ return {
{type = "Color", name = "tint"} {type = "Color", name = "tint"}
} }
}, },
{
name = "ColorIsEqual",
description = "Check if two colors are equal",
returnType = "bool",
params = {
{type = "Color", name = "col1"},
{type = "Color", name = "col2"}
}
},
{ {
name = "Fade", name = "Fade",
description = "Get color with alpha applied, alpha goes from 0.0f to 1.0f", description = "Get color with alpha applied, alpha goes from 0.0f to 1.0f",

+ 209
- 203
parser/output/raylib_api.txt
File diff suppressed because it is too large
View File


+ 5
- 1
parser/output/raylib_api.xml View File

@ -669,7 +669,7 @@
<Param type="unsigned int" name="frames" desc="" /> <Param type="unsigned int" name="frames" desc="" />
</Callback> </Callback>
</Callbacks> </Callbacks>
<Functions count="560">
<Functions count="561">
<Function name="InitWindow" retType="void" paramCount="3" desc="Initialize window and OpenGL context"> <Function name="InitWindow" retType="void" paramCount="3" desc="Initialize window and OpenGL context">
<Param type="int" name="width" desc="" /> <Param type="int" name="width" desc="" />
<Param type="int" name="height" desc="" /> <Param type="int" name="height" desc="" />
@ -2111,6 +2111,10 @@
<Param type="float" name="rotation" desc="" /> <Param type="float" name="rotation" desc="" />
<Param type="Color" name="tint" desc="" /> <Param type="Color" name="tint" desc="" />
</Function> </Function>
<Function name="ColorIsEqual" retType="bool" paramCount="2" desc="Check if two colors are equal">
<Param type="Color" name="col1" desc="" />
<Param type="Color" name="col2" desc="" />
</Function>
<Function name="Fade" retType="Color" paramCount="2" desc="Get color with alpha applied, alpha goes from 0.0f to 1.0f"> <Function name="Fade" retType="Color" paramCount="2" desc="Get color with alpha applied, alpha goes from 0.0f to 1.0f">
<Param type="Color" name="color" desc="" /> <Param type="Color" name="color" desc="" />
<Param type="float" name="alpha" desc="" /> <Param type="float" name="alpha" desc="" />

Loading…
Cancel
Save