mirror of
https://github.com/raysan5/raylib.git
synced 2026-04-09 16:59:09 -04:00
rlparser: update raylib_api.* by CI
This commit is contained in:
@ -5698,6 +5698,48 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "DrawCircleV",
|
||||
"description": "Draw a color-filled circle (Vector version)",
|
||||
"returnType": "void",
|
||||
"params": [
|
||||
{
|
||||
"type": "Vector2",
|
||||
"name": "center"
|
||||
},
|
||||
{
|
||||
"type": "float",
|
||||
"name": "radius"
|
||||
},
|
||||
{
|
||||
"type": "Color",
|
||||
"name": "color"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "DrawCircleGradient",
|
||||
"description": "Draw a gradient-filled circle",
|
||||
"returnType": "void",
|
||||
"params": [
|
||||
{
|
||||
"type": "Vector2",
|
||||
"name": "center"
|
||||
},
|
||||
{
|
||||
"type": "float",
|
||||
"name": "radius"
|
||||
},
|
||||
{
|
||||
"type": "Color",
|
||||
"name": "inner"
|
||||
},
|
||||
{
|
||||
"type": "Color",
|
||||
"name": "outer"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "DrawCircleSector",
|
||||
"description": "Draw a piece of a circle",
|
||||
@ -5760,52 +5802,6 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "DrawCircleGradient",
|
||||
"description": "Draw a gradient-filled circle",
|
||||
"returnType": "void",
|
||||
"params": [
|
||||
{
|
||||
"type": "int",
|
||||
"name": "centerX"
|
||||
},
|
||||
{
|
||||
"type": "int",
|
||||
"name": "centerY"
|
||||
},
|
||||
{
|
||||
"type": "float",
|
||||
"name": "radius"
|
||||
},
|
||||
{
|
||||
"type": "Color",
|
||||
"name": "inner"
|
||||
},
|
||||
{
|
||||
"type": "Color",
|
||||
"name": "outer"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "DrawCircleV",
|
||||
"description": "Draw a color-filled circle (Vector version)",
|
||||
"returnType": "void",
|
||||
"params": [
|
||||
{
|
||||
"type": "Vector2",
|
||||
"name": "center"
|
||||
},
|
||||
{
|
||||
"type": "float",
|
||||
"name": "radius"
|
||||
},
|
||||
{
|
||||
"type": "Color",
|
||||
"name": "color"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "DrawCircleLines",
|
||||
"description": "Draw circle outline",
|
||||
|
||||
@ -4861,6 +4861,27 @@ return {
|
||||
{type = "Color", name = "color"}
|
||||
}
|
||||
},
|
||||
{
|
||||
name = "DrawCircleV",
|
||||
description = "Draw a color-filled circle (Vector version)",
|
||||
returnType = "void",
|
||||
params = {
|
||||
{type = "Vector2", name = "center"},
|
||||
{type = "float", name = "radius"},
|
||||
{type = "Color", name = "color"}
|
||||
}
|
||||
},
|
||||
{
|
||||
name = "DrawCircleGradient",
|
||||
description = "Draw a gradient-filled circle",
|
||||
returnType = "void",
|
||||
params = {
|
||||
{type = "Vector2", name = "center"},
|
||||
{type = "float", name = "radius"},
|
||||
{type = "Color", name = "inner"},
|
||||
{type = "Color", name = "outer"}
|
||||
}
|
||||
},
|
||||
{
|
||||
name = "DrawCircleSector",
|
||||
description = "Draw a piece of a circle",
|
||||
@ -4887,28 +4908,6 @@ return {
|
||||
{type = "Color", name = "color"}
|
||||
}
|
||||
},
|
||||
{
|
||||
name = "DrawCircleGradient",
|
||||
description = "Draw a gradient-filled circle",
|
||||
returnType = "void",
|
||||
params = {
|
||||
{type = "int", name = "centerX"},
|
||||
{type = "int", name = "centerY"},
|
||||
{type = "float", name = "radius"},
|
||||
{type = "Color", name = "inner"},
|
||||
{type = "Color", name = "outer"}
|
||||
}
|
||||
},
|
||||
{
|
||||
name = "DrawCircleV",
|
||||
description = "Draw a color-filled circle (Vector version)",
|
||||
returnType = "void",
|
||||
params = {
|
||||
{type = "Vector2", name = "center"},
|
||||
{type = "float", name = "radius"},
|
||||
{type = "Color", name = "color"}
|
||||
}
|
||||
},
|
||||
{
|
||||
name = "DrawCircleLines",
|
||||
description = "Draw circle outline",
|
||||
|
||||
@ -2262,7 +2262,22 @@ Function 230: DrawCircle() (4 input parameters)
|
||||
Param[2]: centerY (type: int)
|
||||
Param[3]: radius (type: float)
|
||||
Param[4]: color (type: Color)
|
||||
Function 231: DrawCircleSector() (6 input parameters)
|
||||
Function 231: DrawCircleV() (3 input parameters)
|
||||
Name: DrawCircleV
|
||||
Return type: void
|
||||
Description: Draw a color-filled circle (Vector version)
|
||||
Param[1]: center (type: Vector2)
|
||||
Param[2]: radius (type: float)
|
||||
Param[3]: color (type: Color)
|
||||
Function 232: DrawCircleGradient() (4 input parameters)
|
||||
Name: DrawCircleGradient
|
||||
Return type: void
|
||||
Description: Draw a gradient-filled circle
|
||||
Param[1]: center (type: Vector2)
|
||||
Param[2]: radius (type: float)
|
||||
Param[3]: inner (type: Color)
|
||||
Param[4]: outer (type: Color)
|
||||
Function 233: DrawCircleSector() (6 input parameters)
|
||||
Name: DrawCircleSector
|
||||
Return type: void
|
||||
Description: Draw a piece of a circle
|
||||
@ -2272,7 +2287,7 @@ Function 231: DrawCircleSector() (6 input parameters)
|
||||
Param[4]: endAngle (type: float)
|
||||
Param[5]: segments (type: int)
|
||||
Param[6]: color (type: Color)
|
||||
Function 232: DrawCircleSectorLines() (6 input parameters)
|
||||
Function 234: DrawCircleSectorLines() (6 input parameters)
|
||||
Name: DrawCircleSectorLines
|
||||
Return type: void
|
||||
Description: Draw circle sector outline
|
||||
@ -2282,22 +2297,6 @@ Function 232: DrawCircleSectorLines() (6 input parameters)
|
||||
Param[4]: endAngle (type: float)
|
||||
Param[5]: segments (type: int)
|
||||
Param[6]: color (type: Color)
|
||||
Function 233: DrawCircleGradient() (5 input parameters)
|
||||
Name: DrawCircleGradient
|
||||
Return type: void
|
||||
Description: Draw a gradient-filled circle
|
||||
Param[1]: centerX (type: int)
|
||||
Param[2]: centerY (type: int)
|
||||
Param[3]: radius (type: float)
|
||||
Param[4]: inner (type: Color)
|
||||
Param[5]: outer (type: Color)
|
||||
Function 234: DrawCircleV() (3 input parameters)
|
||||
Name: DrawCircleV
|
||||
Return type: void
|
||||
Description: Draw a color-filled circle (Vector version)
|
||||
Param[1]: center (type: Vector2)
|
||||
Param[2]: radius (type: float)
|
||||
Param[3]: color (type: Color)
|
||||
Function 235: DrawCircleLines() (4 input parameters)
|
||||
Name: DrawCircleLines
|
||||
Return type: void
|
||||
|
||||
@ -1409,6 +1409,17 @@
|
||||
<Param type="float" name="radius" desc="" />
|
||||
<Param type="Color" name="color" desc="" />
|
||||
</Function>
|
||||
<Function name="DrawCircleV" retType="void" paramCount="3" desc="Draw a color-filled circle (Vector version)">
|
||||
<Param type="Vector2" name="center" desc="" />
|
||||
<Param type="float" name="radius" desc="" />
|
||||
<Param type="Color" name="color" desc="" />
|
||||
</Function>
|
||||
<Function name="DrawCircleGradient" retType="void" paramCount="4" desc="Draw a gradient-filled circle">
|
||||
<Param type="Vector2" name="center" desc="" />
|
||||
<Param type="float" name="radius" desc="" />
|
||||
<Param type="Color" name="inner" desc="" />
|
||||
<Param type="Color" name="outer" desc="" />
|
||||
</Function>
|
||||
<Function name="DrawCircleSector" retType="void" paramCount="6" desc="Draw a piece of a circle">
|
||||
<Param type="Vector2" name="center" desc="" />
|
||||
<Param type="float" name="radius" desc="" />
|
||||
@ -1425,18 +1436,6 @@
|
||||
<Param type="int" name="segments" desc="" />
|
||||
<Param type="Color" name="color" desc="" />
|
||||
</Function>
|
||||
<Function name="DrawCircleGradient" retType="void" paramCount="5" desc="Draw a gradient-filled circle">
|
||||
<Param type="int" name="centerX" desc="" />
|
||||
<Param type="int" name="centerY" desc="" />
|
||||
<Param type="float" name="radius" desc="" />
|
||||
<Param type="Color" name="inner" desc="" />
|
||||
<Param type="Color" name="outer" desc="" />
|
||||
</Function>
|
||||
<Function name="DrawCircleV" retType="void" paramCount="3" desc="Draw a color-filled circle (Vector version)">
|
||||
<Param type="Vector2" name="center" desc="" />
|
||||
<Param type="float" name="radius" desc="" />
|
||||
<Param type="Color" name="color" desc="" />
|
||||
</Function>
|
||||
<Function name="DrawCircleLines" retType="void" paramCount="4" desc="Draw circle outline">
|
||||
<Param type="int" name="centerX" desc="" />
|
||||
<Param type="int" name="centerY" desc="" />
|
||||
|
||||
Reference in New Issue
Block a user