mirror of
https://github.com/raysan5/raylib.git
synced 2026-04-13 10:39:10 -04:00
rlparser: update raylib_api.* by CI
This commit is contained in:
@ -4861,6 +4861,27 @@ return {
|
||||
{type = "Color", name = "color"}
|
||||
}
|
||||
},
|
||||
{
|
||||
name = "DrawCircleV",
|
||||
description = "Draw a color-filled circle (Vector version)",
|
||||
returnType = "void",
|
||||
params = {
|
||||
{type = "Vector2", name = "center"},
|
||||
{type = "float", name = "radius"},
|
||||
{type = "Color", name = "color"}
|
||||
}
|
||||
},
|
||||
{
|
||||
name = "DrawCircleGradient",
|
||||
description = "Draw a gradient-filled circle",
|
||||
returnType = "void",
|
||||
params = {
|
||||
{type = "Vector2", name = "center"},
|
||||
{type = "float", name = "radius"},
|
||||
{type = "Color", name = "inner"},
|
||||
{type = "Color", name = "outer"}
|
||||
}
|
||||
},
|
||||
{
|
||||
name = "DrawCircleSector",
|
||||
description = "Draw a piece of a circle",
|
||||
@ -4887,28 +4908,6 @@ return {
|
||||
{type = "Color", name = "color"}
|
||||
}
|
||||
},
|
||||
{
|
||||
name = "DrawCircleGradient",
|
||||
description = "Draw a gradient-filled circle",
|
||||
returnType = "void",
|
||||
params = {
|
||||
{type = "int", name = "centerX"},
|
||||
{type = "int", name = "centerY"},
|
||||
{type = "float", name = "radius"},
|
||||
{type = "Color", name = "inner"},
|
||||
{type = "Color", name = "outer"}
|
||||
}
|
||||
},
|
||||
{
|
||||
name = "DrawCircleV",
|
||||
description = "Draw a color-filled circle (Vector version)",
|
||||
returnType = "void",
|
||||
params = {
|
||||
{type = "Vector2", name = "center"},
|
||||
{type = "float", name = "radius"},
|
||||
{type = "Color", name = "color"}
|
||||
}
|
||||
},
|
||||
{
|
||||
name = "DrawCircleLines",
|
||||
description = "Draw circle outline",
|
||||
|
||||
Reference in New Issue
Block a user