βͺCircle
--Position (x, y)
position = {500., 500.}
--circle Size (r)
radius = 20.
--Is the circle filled
is_filled = true
--Color of the circle (r, g, b, a)
color = {255, 255, 255, 255}
--Draw circle on draw
function OnDraw()
draw_circle(position, radius, is_filled, color)
end