mirror of
https://github.com/raysan5/raylib.git
synced 2026-04-27 09:07:25 -04:00
rlparser: update raylib_api.* by CI
This commit is contained in:
@ -10626,7 +10626,7 @@
|
||||
},
|
||||
{
|
||||
"type": "int",
|
||||
"name": "sides"
|
||||
"name": "slices"
|
||||
},
|
||||
{
|
||||
"type": "Color",
|
||||
@ -10653,11 +10653,11 @@
|
||||
},
|
||||
{
|
||||
"type": "int",
|
||||
"name": "slices"
|
||||
"name": "rings"
|
||||
},
|
||||
{
|
||||
"type": "int",
|
||||
"name": "rings"
|
||||
"name": "slices"
|
||||
},
|
||||
{
|
||||
"type": "Color",
|
||||
@ -10684,11 +10684,11 @@
|
||||
},
|
||||
{
|
||||
"type": "int",
|
||||
"name": "slices"
|
||||
"name": "rings"
|
||||
},
|
||||
{
|
||||
"type": "int",
|
||||
"name": "rings"
|
||||
"name": "slices"
|
||||
},
|
||||
{
|
||||
"type": "Color",
|
||||
|
||||
@ -7390,7 +7390,7 @@ return {
|
||||
{type = "Vector3", name = "endPos"},
|
||||
{type = "float", name = "startRadius"},
|
||||
{type = "float", name = "endRadius"},
|
||||
{type = "int", name = "sides"},
|
||||
{type = "int", name = "slices"},
|
||||
{type = "Color", name = "color"}
|
||||
}
|
||||
},
|
||||
@ -7402,8 +7402,8 @@ return {
|
||||
{type = "Vector3", name = "startPos"},
|
||||
{type = "Vector3", name = "endPos"},
|
||||
{type = "float", name = "radius"},
|
||||
{type = "int", name = "slices"},
|
||||
{type = "int", name = "rings"},
|
||||
{type = "int", name = "slices"},
|
||||
{type = "Color", name = "color"}
|
||||
}
|
||||
},
|
||||
@ -7415,8 +7415,8 @@ return {
|
||||
{type = "Vector3", name = "startPos"},
|
||||
{type = "Vector3", name = "endPos"},
|
||||
{type = "float", name = "radius"},
|
||||
{type = "int", name = "slices"},
|
||||
{type = "int", name = "rings"},
|
||||
{type = "int", name = "slices"},
|
||||
{type = "Color", name = "color"}
|
||||
}
|
||||
},
|
||||
|
||||
@ -4055,7 +4055,7 @@ Function 478: DrawCylinderWiresEx() (6 input parameters)
|
||||
Param[2]: endPos (type: Vector3)
|
||||
Param[3]: startRadius (type: float)
|
||||
Param[4]: endRadius (type: float)
|
||||
Param[5]: sides (type: int)
|
||||
Param[5]: slices (type: int)
|
||||
Param[6]: color (type: Color)
|
||||
Function 479: DrawCapsule() (6 input parameters)
|
||||
Name: DrawCapsule
|
||||
@ -4064,8 +4064,8 @@ Function 479: DrawCapsule() (6 input parameters)
|
||||
Param[1]: startPos (type: Vector3)
|
||||
Param[2]: endPos (type: Vector3)
|
||||
Param[3]: radius (type: float)
|
||||
Param[4]: slices (type: int)
|
||||
Param[5]: rings (type: int)
|
||||
Param[4]: rings (type: int)
|
||||
Param[5]: slices (type: int)
|
||||
Param[6]: color (type: Color)
|
||||
Function 480: DrawCapsuleWires() (6 input parameters)
|
||||
Name: DrawCapsuleWires
|
||||
@ -4074,8 +4074,8 @@ Function 480: DrawCapsuleWires() (6 input parameters)
|
||||
Param[1]: startPos (type: Vector3)
|
||||
Param[2]: endPos (type: Vector3)
|
||||
Param[3]: radius (type: float)
|
||||
Param[4]: slices (type: int)
|
||||
Param[5]: rings (type: int)
|
||||
Param[4]: rings (type: int)
|
||||
Param[5]: slices (type: int)
|
||||
Param[6]: color (type: Color)
|
||||
Function 481: DrawPlane() (3 input parameters)
|
||||
Name: DrawPlane
|
||||
|
||||
@ -2703,23 +2703,23 @@
|
||||
<Param type="Vector3" name="endPos" desc="" />
|
||||
<Param type="float" name="startRadius" desc="" />
|
||||
<Param type="float" name="endRadius" desc="" />
|
||||
<Param type="int" name="sides" desc="" />
|
||||
<Param type="int" name="slices" desc="" />
|
||||
<Param type="Color" name="color" desc="" />
|
||||
</Function>
|
||||
<Function name="DrawCapsule" retType="void" paramCount="6" desc="Draw a capsule with the center of its sphere caps at startPos and endPos">
|
||||
<Param type="Vector3" name="startPos" desc="" />
|
||||
<Param type="Vector3" name="endPos" desc="" />
|
||||
<Param type="float" name="radius" desc="" />
|
||||
<Param type="int" name="slices" desc="" />
|
||||
<Param type="int" name="rings" desc="" />
|
||||
<Param type="int" name="slices" desc="" />
|
||||
<Param type="Color" name="color" desc="" />
|
||||
</Function>
|
||||
<Function name="DrawCapsuleWires" retType="void" paramCount="6" desc="Draw capsule wireframe with the center of its sphere caps at startPos and endPos">
|
||||
<Param type="Vector3" name="startPos" desc="" />
|
||||
<Param type="Vector3" name="endPos" desc="" />
|
||||
<Param type="float" name="radius" desc="" />
|
||||
<Param type="int" name="slices" desc="" />
|
||||
<Param type="int" name="rings" desc="" />
|
||||
<Param type="int" name="slices" desc="" />
|
||||
<Param type="Color" name="color" desc="" />
|
||||
</Function>
|
||||
<Function name="DrawPlane" retType="void" paramCount="3" desc="Draw a plane XZ">
|
||||
|
||||
Reference in New Issue
Block a user