drawing.Radius). Use whichever reads cleaner in your code.
Parameters
Returns
any - the property’s current value. The type depends on the property (a Vector2 for Position, a number for Radius, and so on).
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
getrenderproperty(drawing: DrawingObject, property: string): any
drawing.Radius). Use whichever reads cleaner in your code.
| Parameter | Type | Description |
|---|---|---|
drawing | DrawingObject | The drawing to read from. |
property | string | The property name. |
any - the property’s current value. The type depends on the property (a Vector2 for Position, a number for Radius, and so on).
local val = getrenderproperty(Drawing.new("Line"), "Visible")
local circle = Drawing.new("Circle")
circle.Radius = 100
print(getrenderproperty(circle, "Radius")) --> 100
Color, Visible, Transparency, Position.