2017-09-12 20:42:36 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8" ?>
|
2020-02-01 01:03:48 +00:00
|
|
|
<class name="ColorRect" inherits="Control" version="4.0">
|
2017-09-12 20:42:36 +00:00
|
|
|
<brief_description>
|
2018-08-17 21:55:19 +00:00
|
|
|
Colored rectangle.
|
2017-09-12 20:42:36 +00:00
|
|
|
</brief_description>
|
|
|
|
<description>
|
2020-10-19 17:18:53 +00:00
|
|
|
Displays a rectangle filled with a solid [member color]. If you need to display the border alone, consider using [ReferenceRect] instead.
|
2017-09-12 20:42:36 +00:00
|
|
|
</description>
|
|
|
|
<tutorials>
|
2020-10-01 08:34:47 +00:00
|
|
|
<link title="2D Dodge The Creeps Demo">https://godotengine.org/asset-library/asset/515</link>
|
2017-09-12 20:42:36 +00:00
|
|
|
</tutorials>
|
|
|
|
<methods>
|
|
|
|
</methods>
|
|
|
|
<members>
|
2019-09-24 17:45:03 +00:00
|
|
|
<member name="color" type="Color" setter="set_color" getter="get_color" default="Color(1, 1, 1, 1)">
|
2018-08-17 21:55:19 +00:00
|
|
|
The fill color.
|
2020-09-12 15:06:13 +00:00
|
|
|
[codeblocks]
|
|
|
|
[gdscript]
|
2018-08-17 21:55:19 +00:00
|
|
|
$ColorRect.color = Color(1, 0, 0, 1) # Set ColorRect's color to red.
|
2020-09-12 15:06:13 +00:00
|
|
|
[/gdscript]
|
|
|
|
[csharp]
|
|
|
|
GetNode<ColorRect>("ColorRect").Color = new Color(1, 0, 0, 1); // Set ColorRect's color to red.
|
|
|
|
[/csharp]
|
|
|
|
[/codeblocks]
|
2017-09-12 20:42:36 +00:00
|
|
|
</member>
|
|
|
|
</members>
|
|
|
|
<constants>
|
|
|
|
</constants>
|
|
|
|
</class>
|