mirror of
https://github.com/raysan5/raylib.git
synced 2025-10-07 10:26:28 +00:00
Update raylib_api.* by CI
This commit is contained in:
@@ -5508,33 +5508,6 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "DrawLineDashed",
|
||||
"description": "Draw a dashed line",
|
||||
"returnType": "void",
|
||||
"params": [
|
||||
{
|
||||
"type": "Vector2",
|
||||
"name": "startPos"
|
||||
},
|
||||
{
|
||||
"type": "Vector2",
|
||||
"name": "endPos"
|
||||
},
|
||||
{
|
||||
"type": "int",
|
||||
"name": "dashSize"
|
||||
},
|
||||
{
|
||||
"type": "int",
|
||||
"name": "whiteSpaceSize"
|
||||
},
|
||||
{
|
||||
"type": "Color",
|
||||
"name": "color"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "DrawLineV",
|
||||
"description": "Draw a line (using gl lines)",
|
||||
@@ -5619,6 +5592,33 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "DrawLineDashed",
|
||||
"description": "Draw a dashed line",
|
||||
"returnType": "void",
|
||||
"params": [
|
||||
{
|
||||
"type": "Vector2",
|
||||
"name": "startPos"
|
||||
},
|
||||
{
|
||||
"type": "Vector2",
|
||||
"name": "endPos"
|
||||
},
|
||||
{
|
||||
"type": "int",
|
||||
"name": "dashSize"
|
||||
},
|
||||
{
|
||||
"type": "int",
|
||||
"name": "spaceSize"
|
||||
},
|
||||
{
|
||||
"type": "Color",
|
||||
"name": "color"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "DrawCircle",
|
||||
"description": "Draw a color-filled circle",
|
||||
|
@@ -4758,18 +4758,6 @@ return {
|
||||
{type = "Color", name = "color"}
|
||||
}
|
||||
},
|
||||
{
|
||||
name = "DrawLineDashed",
|
||||
description = "Draw a dashed line",
|
||||
returnType = "void",
|
||||
params = {
|
||||
{type = "Vector2", name = "startPos"},
|
||||
{type = "Vector2", name = "endPos"},
|
||||
{type = "int", name = "dashSize"},
|
||||
{type = "int", name = "whiteSpaceSize"},
|
||||
{type = "Color", name = "color"}
|
||||
}
|
||||
},
|
||||
{
|
||||
name = "DrawLineV",
|
||||
description = "Draw a line (using gl lines)",
|
||||
@@ -4812,6 +4800,18 @@ return {
|
||||
{type = "Color", name = "color"}
|
||||
}
|
||||
},
|
||||
{
|
||||
name = "DrawLineDashed",
|
||||
description = "Draw a dashed line",
|
||||
returnType = "void",
|
||||
params = {
|
||||
{type = "Vector2", name = "startPos"},
|
||||
{type = "Vector2", name = "endPos"},
|
||||
{type = "int", name = "dashSize"},
|
||||
{type = "int", name = "spaceSize"},
|
||||
{type = "Color", name = "color"}
|
||||
}
|
||||
},
|
||||
{
|
||||
name = "DrawCircle",
|
||||
description = "Draw a color-filled circle",
|
||||
|
@@ -2190,23 +2190,14 @@ Function 221: DrawLine() (5 input parameters)
|
||||
Param[3]: endPosX (type: int)
|
||||
Param[4]: endPosY (type: int)
|
||||
Param[5]: color (type: Color)
|
||||
Function 222: DrawLineDashed() (5 input parameters)
|
||||
Name: DrawLineDashed
|
||||
Return type: void
|
||||
Description: Draw a dashed line
|
||||
Param[1]: startPos (type: Vector2)
|
||||
Param[2]: endPos (type: Vector2)
|
||||
Param[3]: dashSize (type: int)
|
||||
Param[4]: whiteSpaceSize (type: int)
|
||||
Param[5]: color (type: Color)
|
||||
Function 223: DrawLineV() (3 input parameters)
|
||||
Function 222: DrawLineV() (3 input parameters)
|
||||
Name: DrawLineV
|
||||
Return type: void
|
||||
Description: Draw a line (using gl lines)
|
||||
Param[1]: startPos (type: Vector2)
|
||||
Param[2]: endPos (type: Vector2)
|
||||
Param[3]: color (type: Color)
|
||||
Function 224: DrawLineEx() (4 input parameters)
|
||||
Function 223: DrawLineEx() (4 input parameters)
|
||||
Name: DrawLineEx
|
||||
Return type: void
|
||||
Description: Draw a line (using triangles/quads)
|
||||
@@ -2214,14 +2205,14 @@ Function 224: DrawLineEx() (4 input parameters)
|
||||
Param[2]: endPos (type: Vector2)
|
||||
Param[3]: thick (type: float)
|
||||
Param[4]: color (type: Color)
|
||||
Function 225: DrawLineStrip() (3 input parameters)
|
||||
Function 224: DrawLineStrip() (3 input parameters)
|
||||
Name: DrawLineStrip
|
||||
Return type: void
|
||||
Description: Draw lines sequence (using gl lines)
|
||||
Param[1]: points (type: const Vector2 *)
|
||||
Param[2]: pointCount (type: int)
|
||||
Param[3]: color (type: Color)
|
||||
Function 226: DrawLineBezier() (4 input parameters)
|
||||
Function 225: DrawLineBezier() (4 input parameters)
|
||||
Name: DrawLineBezier
|
||||
Return type: void
|
||||
Description: Draw line segment cubic-bezier in-out interpolation
|
||||
@@ -2229,6 +2220,15 @@ Function 226: DrawLineBezier() (4 input parameters)
|
||||
Param[2]: endPos (type: Vector2)
|
||||
Param[3]: thick (type: float)
|
||||
Param[4]: color (type: Color)
|
||||
Function 226: DrawLineDashed() (5 input parameters)
|
||||
Name: DrawLineDashed
|
||||
Return type: void
|
||||
Description: Draw a dashed line
|
||||
Param[1]: startPos (type: Vector2)
|
||||
Param[2]: endPos (type: Vector2)
|
||||
Param[3]: dashSize (type: int)
|
||||
Param[4]: spaceSize (type: int)
|
||||
Param[5]: color (type: Color)
|
||||
Function 227: DrawCircle() (4 input parameters)
|
||||
Name: DrawCircle
|
||||
Return type: void
|
||||
|
@@ -1359,13 +1359,6 @@
|
||||
<Param type="int" name="endPosY" desc="" />
|
||||
<Param type="Color" name="color" desc="" />
|
||||
</Function>
|
||||
<Function name="DrawLineDashed" retType="void" paramCount="5" desc="Draw a dashed line">
|
||||
<Param type="Vector2" name="startPos" desc="" />
|
||||
<Param type="Vector2" name="endPos" desc="" />
|
||||
<Param type="int" name="dashSize" desc="" />
|
||||
<Param type="int" name="whiteSpaceSize" desc="" />
|
||||
<Param type="Color" name="color" desc="" />
|
||||
</Function>
|
||||
<Function name="DrawLineV" retType="void" paramCount="3" desc="Draw a line (using gl lines)">
|
||||
<Param type="Vector2" name="startPos" desc="" />
|
||||
<Param type="Vector2" name="endPos" desc="" />
|
||||
@@ -1388,6 +1381,13 @@
|
||||
<Param type="float" name="thick" desc="" />
|
||||
<Param type="Color" name="color" desc="" />
|
||||
</Function>
|
||||
<Function name="DrawLineDashed" retType="void" paramCount="5" desc="Draw a dashed line">
|
||||
<Param type="Vector2" name="startPos" desc="" />
|
||||
<Param type="Vector2" name="endPos" desc="" />
|
||||
<Param type="int" name="dashSize" desc="" />
|
||||
<Param type="int" name="spaceSize" desc="" />
|
||||
<Param type="Color" name="color" desc="" />
|
||||
</Function>
|
||||
<Function name="DrawCircle" retType="void" paramCount="4" desc="Draw a color-filled circle">
|
||||
<Param type="int" name="centerX" desc="" />
|
||||
<Param type="int" name="centerY" desc="" />
|
||||
|
Reference in New Issue
Block a user