setrenderproperty
function setrenderproperty(drawing: Drawing, property: string, value: any): ()Parameters
Example
local circle = Drawing.new("Circle")
setrenderproperty(circle, "Radius", 50)
setrenderproperty(circle, "Visible", true)
print(circle.Radius) -- Output: 50
print(circle.Visible) -- Output: trueLast updated