Skip to content

Commit 6f10777

Browse files
Update raylib_api.* by CI
1 parent f680776 commit 6f10777

File tree

4 files changed

+431
-376
lines changed

4 files changed

+431
-376
lines changed

tools/parser/output/raylib_api.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5508,6 +5508,33 @@
55085508
}
55095509
]
55105510
},
5511+
{
5512+
"name": "DrawLineDashed",
5513+
"description": "Draw a dashed line",
5514+
"returnType": "void",
5515+
"params": [
5516+
{
5517+
"type": "Vector2",
5518+
"name": "startPos"
5519+
},
5520+
{
5521+
"type": "Vector2",
5522+
"name": "endPos"
5523+
},
5524+
{
5525+
"type": "int",
5526+
"name": "dashSize"
5527+
},
5528+
{
5529+
"type": "int",
5530+
"name": "whiteSpaceSize"
5531+
},
5532+
{
5533+
"type": "Color",
5534+
"name": "color"
5535+
}
5536+
]
5537+
},
55115538
{
55125539
"name": "DrawLineV",
55135540
"description": "Draw a line (using gl lines)",

tools/parser/output/raylib_api.lua

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4758,6 +4758,18 @@ return {
47584758
{type = "Color", name = "color"}
47594759
}
47604760
},
4761+
{
4762+
name = "DrawLineDashed",
4763+
description = "Draw a dashed line",
4764+
returnType = "void",
4765+
params = {
4766+
{type = "Vector2", name = "startPos"},
4767+
{type = "Vector2", name = "endPos"},
4768+
{type = "int", name = "dashSize"},
4769+
{type = "int", name = "whiteSpaceSize"},
4770+
{type = "Color", name = "color"}
4771+
}
4772+
},
47614773
{
47624774
name = "DrawLineV",
47634775
description = "Draw a line (using gl lines)",

0 commit comments

Comments
 (0)