Border:set_thickness
Sets the border thickness in pixels.
Usage
border:set_thickness(radius)
Arguments
| Name | Type | Description |
radius | number | Corner radius. |
Examples
local border = crystal.Border:new();
border:set_thickness(4);
print(border:thickness()); -- Prints 4