Browse Source

Update raylib_api.* by CI

pull/5225/head
github-actions[bot] 4 weeks ago
parent
commit
6f1077737e
4 changed files with 431 additions and 376 deletions
  1. +27
    -0
      tools/parser/output/raylib_api.json
  2. +12
    -0
      tools/parser/output/raylib_api.lua
  3. +384
    -375
      tools/parser/output/raylib_api.txt
  4. +8
    -1
      tools/parser/output/raylib_api.xml

+ 27
- 0
tools/parser/output/raylib_api.json View File

@ -5508,6 +5508,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": "whiteSpaceSize"
},
{
"type": "Color",
"name": "color"
}
]
},
{
"name": "DrawLineV",
"description": "Draw a line (using gl lines)",

+ 12
- 0
tools/parser/output/raylib_api.lua View File

@ -4758,6 +4758,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 = "whiteSpaceSize"},
{type = "Color", name = "color"}
}
},
{
name = "DrawLineV",
description = "Draw a line (using gl lines)",

+ 384
- 375
tools/parser/output/raylib_api.txt
File diff suppressed because it is too large
View File


+ 8
- 1
tools/parser/output/raylib_api.xml View File

@ -679,7 +679,7 @@
<Param type="unsigned int" name="frames" desc="" />
</Callback>
</Callbacks>
<Functions count="595">
<Functions count="596">
<Function name="InitWindow" retType="void" paramCount="3" desc="Initialize window and OpenGL context">
<Param type="int" name="width" desc="" />
<Param type="int" name="height" desc="" />
@ -1359,6 +1359,13 @@
<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="" />

Loading…
Cancel
Save