Work in progress
Godot documentation is being updated to reflect the latest changes in version
4.0
. Some documentation pages may
still state outdated information. This banner will tell you if you're reading one of such pages.
The contents of this page are up to date. If you can still find outdated information, please open an issue.
ReferenceRect¶
Inherits: Control < CanvasItem < Node < Object
Reference frame for GUI.
Description¶
A rectangle box that displays only a border_color border color around its rectangle. ReferenceRect has no fill Color. If you need to display a rectangle filled with a solid color, consider using ColorRect instead.
Properties¶
|
||
|
||
|
Property Descriptions¶
Color border_color = Color(1, 0, 0, 1)
Sets the border Color of the ReferenceRect.
float border_width = 1.0
Sets the border width of the ReferenceRect. The border grows both inwards and outwards with respect to the rectangle box.
bool editor_only = true
If true
, the ReferenceRect will only be visible while in editor. Otherwise, ReferenceRect will be visible in the running project.