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

@@ -4838,6 +4838,17 @@ return {
{type = "Color", name = "color"}
}
},
{
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",
@@ -4850,6 +4861,17 @@ return {
{type = "Color", name = "color"}
}
},
{
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",