Update raylib_api.* by CI
This commit is contained in:
parent
1e8450665c
commit
d3f2d94f23
4 changed files with 238 additions and 204 deletions
|
@ -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",
|
||||||
|
|
|
@ -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",
|
||||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -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…
Add table
Add a link
Reference in a new issue