Update raylib_api.* by CI

This commit is contained in:
github-actions[bot]
2025-05-31 18:41:49 +00:00
parent 20c0c92bdb
commit 3414d96eaf
4 changed files with 453 additions and 357 deletions

View File

@ -5702,6 +5702,29 @@
}
]
},
{
"name": "DrawEllipseV",
"description": "Draw ellipse (Vector version)",
"returnType": "void",
"params": [
{
"type": "Vector2",
"name": "center"
},
{
"type": "float",
"name": "radiusH"
},
{
"type": "float",
"name": "radiusV"
},
{
"type": "Color",
"name": "color"
}
]
},
{
"name": "DrawEllipseLines",
"description": "Draw ellipse outline",
@ -5729,6 +5752,29 @@
}
]
},
{
"name": "DrawEllipseLinesV",
"description": "Draw ellipse outline (Vector version)",
"returnType": "void",
"params": [
{
"type": "Vector2",
"name": "center"
},
{
"type": "float",
"name": "radiusH"
},
{
"type": "float",
"name": "radiusV"
},
{
"type": "Color",
"name": "color"
}
]
},
{
"name": "DrawRing",
"description": "Draw ring",