2017-09-12 20:42:36 +00:00
<?xml version="1.0" encoding="UTF-8" ?>
2022-02-14 13:18:53 +00:00
<class name= "Color" version= "4.0" xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation= "../class.xsd" >
2017-09-12 20:42:36 +00:00
<brief_description >
2022-11-21 14:22:45 +00:00
Color built-in type, in RGBA format.
2017-09-12 20:42:36 +00:00
</brief_description>
<description >
2022-11-21 14:22:45 +00:00
A color represented in RGBA format by red ([member r]), green ([member g]), blue ([member b]), and alpha ([member a]) components. Each component is a 16-bit floating-point value, usually ranging from 0 to 1. Some properties (such as [member CanvasItem.modulate]) may support values greater than 1, for overbright or High Dynamic Range colors. If you want to supply values in a range of 0 to 255, you should use [method @GDScript.Color8].
Colors can also be created by name from a set of standardized colors, through the [String] constructor, [method from_string], or by directly fetching the color constants documented here. The standardized color set is based on the [url=https://en.wikipedia.org/wiki/X11_color_names]X11 color names[/url], with the addition of [constant TRANSPARENT].
2020-06-21 15:16:10 +00:00
[b]Note:[/b] In a boolean context, a Color will evaluate to [code]false[/code] if it's equal to [code]Color(0, 0, 0, 1)[/code] (opaque black). Otherwise, a Color will always evaluate to [code]true[/code].
2020-09-23 21:48:37 +00:00
[url=https://raw.githubusercontent.com/godotengine/godot-docs/master/img/color_constants.png]Color constants cheatsheet[/url]
2017-09-12 20:42:36 +00:00
</description>
<tutorials >
2020-10-01 08:34:47 +00:00
<link title= "2D GD Paint Demo" > https://godotengine.org/asset-library/asset/517</link>
<link title= "Tween Demo" > https://godotengine.org/asset-library/asset/146</link>
<link title= "GUI Drag And Drop Demo" > https://godotengine.org/asset-library/asset/133</link>
2017-09-12 20:42:36 +00:00
</tutorials>
2021-09-21 02:49:02 +00:00
<constructors >
<constructor name= "Color" >
2021-07-30 13:28:05 +00:00
<return type= "Color" />
2017-09-12 20:42:36 +00:00
<description >
2022-11-21 14:22:45 +00:00
Constructs a default [Color] from opaque black. This is the same as [constant BLACK].
[b]Note:[/b] in C#, constructs an empty color with all of its components set to [code]0.0[/code] (transparent black).
2017-09-12 20:42:36 +00:00
</description>
2021-09-21 02:49:02 +00:00
</constructor>
<constructor name= "Color" >
2021-07-30 13:28:05 +00:00
<return type= "Color" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "from" type= "Color" />
<param index= "1" name= "alpha" type= "float" />
2019-07-19 00:15:39 +00:00
<description >
2022-11-21 14:22:45 +00:00
Constructs a [Color] from the existing color, with [member a] set to the given [param alpha] value.
2020-09-12 15:06:13 +00:00
[codeblocks]
[gdscript]
2022-11-21 14:22:45 +00:00
var red = Color(Color.RED, 0.2) # 20% opaque red.
2020-09-12 15:06:13 +00:00
[/gdscript]
[csharp]
2021-12-24 08:45:09 +00:00
var red = new Color(Colors.Red, 0.2f); // 20% opaque red.
2020-09-12 15:06:13 +00:00
[/csharp]
[/codeblocks]
2019-07-19 00:15:39 +00:00
</description>
2021-09-21 02:49:02 +00:00
</constructor>
<constructor name= "Color" >
<return type= "Color" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "from" type= "Color" />
2021-09-21 02:49:02 +00:00
<description >
Constructs a [Color] as a copy of the given [Color].
</description>
</constructor>
<constructor name= "Color" >
2021-07-30 13:28:05 +00:00
<return type= "Color" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "code" type= "String" />
2020-12-06 22:37:34 +00:00
<description >
2022-11-21 14:22:45 +00:00
Constructs a [Color] either from an HTML color code or from a standardized color name. The supported color names are the same as the constants.
2020-12-06 22:37:34 +00:00
</description>
2021-09-21 02:49:02 +00:00
</constructor>
<constructor name= "Color" >
2021-07-30 13:28:05 +00:00
<return type= "Color" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "code" type= "String" />
<param index= "1" name= "alpha" type= "float" />
2020-12-06 22:37:34 +00:00
<description >
2022-11-21 14:22:45 +00:00
Constructs a [Color] either from an HTML color code or from a standardized color name, with [param alpha] on the range of 0.0 to 1.0. The supported color names are the same as the constants.
2020-12-06 22:37:34 +00:00
</description>
2021-09-21 02:49:02 +00:00
</constructor>
<constructor name= "Color" >
2021-07-30 13:28:05 +00:00
<return type= "Color" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "r" type= "float" />
<param index= "1" name= "g" type= "float" />
<param index= "2" name= "b" type= "float" />
2017-09-12 20:42:36 +00:00
<description >
2022-11-21 14:22:45 +00:00
Constructs a [Color] from RGB values, typically between 0.0 and 1.0. [member a] is set to 1.0.
2020-09-12 15:06:13 +00:00
[codeblocks]
[gdscript]
2021-09-21 02:49:02 +00:00
var color = Color(0.2, 1.0, 0.7) # Similar to `Color8(51, 255, 178, 255)`
2020-09-12 15:06:13 +00:00
[/gdscript]
[csharp]
2021-09-21 02:49:02 +00:00
var color = new Color(0.2f, 1.0f, 0.7f); // Similar to `Color.Color8(51, 255, 178, 255)`
2020-09-12 15:06:13 +00:00
[/csharp]
[/codeblocks]
2017-09-12 20:42:36 +00:00
</description>
2021-09-21 02:49:02 +00:00
</constructor>
<constructor name= "Color" >
2021-07-30 13:28:05 +00:00
<return type= "Color" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "r" type= "float" />
<param index= "1" name= "g" type= "float" />
<param index= "2" name= "b" type= "float" />
<param index= "3" name= "a" type= "float" />
2017-09-12 20:42:36 +00:00
<description >
2022-11-21 14:22:45 +00:00
Constructs a [Color] from RGBA values, typically between 0.0 and 1.0.
2020-09-12 15:06:13 +00:00
[codeblocks]
[gdscript]
2021-09-21 02:49:02 +00:00
var color = Color(0.2, 1.0, 0.7, 0.8) # Similar to `Color8(51, 255, 178, 204)`
2020-09-12 15:06:13 +00:00
[/gdscript]
[csharp]
2021-09-21 02:49:02 +00:00
var color = new Color(0.2f, 1.0f, 0.7f, 0.8f); // Similar to `Color.Color8(51, 255, 178, 255, 204)`
2020-09-12 15:06:13 +00:00
[/csharp]
[/codeblocks]
2017-09-12 20:42:36 +00:00
</description>
2021-09-21 02:49:02 +00:00
</constructor>
</constructors>
<methods >
2021-03-18 13:44:42 +00:00
<method name= "blend" qualifiers= "const" >
2021-07-30 13:28:05 +00:00
<return type= "Color" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "over" type= "Color" />
2017-09-12 20:42:36 +00:00
<description >
2023-01-21 11:25:29 +00:00
Returns a new color resulting from overlaying this color over the given color. In a painting program, you can imagine it as the [param over] color painted over this color (including alpha).
2020-09-12 15:06:13 +00:00
[codeblocks]
[gdscript]
2017-09-12 20:42:36 +00:00
var bg = Color(0.0, 1.0, 0.0, 0.5) # Green with alpha of 50%
2018-12-14 08:37:19 +00:00
var fg = Color(1.0, 0.0, 0.0, 0.5) # Red with alpha of 50%
var blended_color = bg.blend(fg) # Brown with alpha of 75%
2020-09-12 15:06:13 +00:00
[/gdscript]
[csharp]
var bg = new Color(0.0f, 1.0f, 0.0f, 0.5f); // Green with alpha of 50%
var fg = new Color(1.0f, 0.0f, 0.0f, 0.5f); // Red with alpha of 50%
Color blendedColor = bg.Blend(fg); // Brown with alpha of 75%
[/csharp]
[/codeblocks]
2017-09-12 20:42:36 +00:00
</description>
</method>
2021-02-01 05:10:52 +00:00
<method name= "clamp" qualifiers= "const" >
2021-07-30 13:28:05 +00:00
<return type= "Color" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "min" type= "Color" default= "Color(0, 0, 0, 0)" />
<param index= "1" name= "max" type= "Color" default= "Color(1, 1, 1, 1)" />
2021-02-01 05:10:52 +00:00
<description >
2022-08-12 17:13:27 +00:00
Returns a new color with all components clamped between the components of [param min] and [param max], by running [method @GlobalScope.clamp] on each component.
2021-02-01 05:10:52 +00:00
</description>
</method>
2021-03-18 13:44:42 +00:00
<method name= "darkened" qualifiers= "const" >
2021-07-30 13:28:05 +00:00
<return type= "Color" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "amount" type= "float" />
2017-11-24 08:16:27 +00:00
<description >
2022-11-21 14:22:45 +00:00
Returns a new color resulting from making this color darker by the specified [param amount] (ratio from 0.0 to 1.0). See also [method lightened].
2020-09-12 15:06:13 +00:00
[codeblocks]
[gdscript]
2017-11-24 08:16:27 +00:00
var green = Color(0.0, 1.0, 0.0)
var darkgreen = green.darkened(0.2) # 20% darker than regular green
2020-09-12 15:06:13 +00:00
[/gdscript]
[csharp]
var green = new Color(0.0f, 1.0f, 0.0f);
Color darkgreen = green.Darkened(0.2f); // 20% darker than regular green
[/csharp]
[/codeblocks]
2017-11-24 08:16:27 +00:00
</description>
</method>
2021-11-11 08:01:39 +00:00
<method name= "from_hsv" qualifiers= "static" >
<return type= "Color" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "h" type= "float" />
<param index= "1" name= "s" type= "float" />
<param index= "2" name= "v" type= "float" />
<param index= "3" name= "alpha" type= "float" default= "1.0" />
2021-11-11 08:01:39 +00:00
<description >
2022-11-21 14:22:45 +00:00
Constructs a color from an [url=https://en.wikipedia.org/wiki/HSL_and_HSV]HSV profile[/url]. The hue ([param h]), saturation ([param s]), and value ([param v]) are typically between 0.0 and 1.0.
2021-11-11 08:01:39 +00:00
[codeblocks]
[gdscript]
2022-06-08 09:42:51 +00:00
var color = Color.from_hsv(0.58, 0.5, 0.79, 0.8)
2021-11-11 08:01:39 +00:00
[/gdscript]
[csharp]
2022-06-08 09:42:51 +00:00
var color = Color.FromHsv(0.58f, 0.5f, 0.79f, 0.8f);
2021-11-11 08:01:39 +00:00
[/csharp]
[/codeblocks]
</description>
</method>
2022-04-18 18:29:29 +00:00
<method name= "from_ok_hsl" qualifiers= "static" >
<return type= "Color" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "h" type= "float" />
<param index= "1" name= "s" type= "float" />
<param index= "2" name= "l" type= "float" />
<param index= "3" name= "alpha" type= "float" default= "1.0" />
2022-04-18 18:29:29 +00:00
<description >
2022-11-21 14:22:45 +00:00
Constructs a color from an [url=https://bottosson.github.io/posts/colorpicker/]OK HSL profile[/url]. The hue ([param h]), saturation ([param s]), and lightness ([param l]) are typically between 0.0 and 1.0.
2022-04-18 18:29:29 +00:00
[codeblocks]
[gdscript]
2022-06-08 09:42:51 +00:00
var color = Color.from_ok_hsl(0.58, 0.5, 0.79, 0.8)
2022-04-18 18:29:29 +00:00
[/gdscript]
[csharp]
2022-06-08 09:42:51 +00:00
var color = Color.FromOkHsl(0.58f, 0.5f, 0.79f, 0.8f);
2022-04-18 18:29:29 +00:00
[/csharp]
[/codeblocks]
</description>
</method>
2021-03-18 13:44:42 +00:00
<method name= "from_rgbe9995" qualifiers= "static" >
2021-07-30 13:28:05 +00:00
<return type= "Color" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "rgbe" type= "int" />
2021-03-18 13:44:42 +00:00
<description >
2022-10-06 19:59:48 +00:00
Encodes a [Color] from a RGBE9995 format integer. See [constant Image.FORMAT_RGBE9995].
2021-03-18 13:44:42 +00:00
</description>
</method>
<method name= "from_string" qualifiers= "static" >
2021-07-30 13:28:05 +00:00
<return type= "Color" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "str" type= "String" />
<param index= "1" name= "default" type= "Color" />
2021-03-18 13:44:42 +00:00
<description >
2022-11-21 14:22:45 +00:00
Creates a [Color] from the given string, which can be either an HTML color code or a named color (case-insensitive). Returns [param default] if the color cannot be inferred from the string.
2021-03-18 13:44:42 +00:00
</description>
</method>
2021-12-16 05:59:04 +00:00
<method name= "get_luminance" qualifiers= "const" >
<return type= "float" />
<description >
2022-11-21 14:22:45 +00:00
Returns the light intensity of the color, as a value between 0.0 and 1.0 (inclusive). This is useful when determining light or dark color. Colors with a luminance smaller than 0.5 can be generally considered dark.
2022-11-01 14:29:38 +00:00
[b]Note:[/b] [method get_luminance] relies on the color being in the linear color space to return an accurate relative luminance value. If the color is in the sRGB color space, use [method srgb_to_linear] to convert it to the linear color space first.
2021-12-16 05:59:04 +00:00
</description>
</method>
2021-03-18 13:44:42 +00:00
<method name= "hex" qualifiers= "static" >
2021-07-30 13:28:05 +00:00
<return type= "Color" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "hex" type= "int" />
2021-03-18 13:44:42 +00:00
<description >
2022-11-21 14:22:45 +00:00
Returns the [Color] associated with the provided [param hex] integer in 32-bit ARGB format (8 bits per channel, alpha channel first).
In GDScript and C#, the [int] is best visualized with hexadecimal notation ([code]"0x"[/code] prefix).
2022-12-06 03:58:16 +00:00
[codeblocks]
[gdscript]
2022-11-21 14:22:45 +00:00
var red = Color.hex(0xffff0000)
var dark_cyan = Color.hex(0xff008b8b)
var my_color = Color.hex(0xa4bbefd2)
2022-12-06 03:58:16 +00:00
[/gdscript]
[csharp]
var red = new Color(0xffff0000);
var dark_cyan = new Color(0xff008b8b);
var my_color = new Color(0xa4bbefd2);
[/csharp]
[/codeblocks]
2021-03-18 13:44:42 +00:00
</description>
</method>
<method name= "hex64" qualifiers= "static" >
2021-07-30 13:28:05 +00:00
<return type= "Color" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "hex" type= "int" />
2021-03-18 13:44:42 +00:00
<description >
2022-11-21 14:22:45 +00:00
Returns the [Color] associated with the provided [param hex] integer in 64-bit ARGB format (16 bits per channel, alpha channel first).
In GDScript and C#, the [int] is best visualized with hexadecimal notation ([code]"0x"[/code] prefix).
2021-03-18 13:44:42 +00:00
</description>
</method>
<method name= "html" qualifiers= "static" >
2021-07-30 13:28:05 +00:00
<return type= "Color" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "rgba" type= "String" />
2021-03-18 13:44:42 +00:00
<description >
2022-11-21 14:22:45 +00:00
Returns a new color from [param rgba], an HTML hexadecimal color string. [param rgba] is not case-sensitive, and may be prefixed by a hash sign ([code]#[/code]).
[param rgba] must be a valid three-digit or six-digit hexadecimal color string, and may contain an alpha channel value. If [param rgba] does not contain an alpha channel value, an alpha channel value of 1.0 is applied. If [param rgba] is invalid, returns an empty color.
[b]Note:[/b] In C#, this method is not implemented. The same functionality is provided by the Color constructor.
2022-02-08 05:13:48 +00:00
[codeblocks]
[gdscript]
2022-11-21 14:22:45 +00:00
var blue = Color.html("#0000ff") # blue is Color(0.0, 0.0, 1.0, 1.0)
var green = Color.html("#0F0") # green is Color(0.0, 1.0, 0.0, 1.0)
var col = Color.html("663399cc") # col is Color(0.4, 0.2, 0.6, 0.8)
2022-02-08 05:13:48 +00:00
[/gdscript]
[csharp]
2022-12-06 03:58:16 +00:00
var blue = Color.FromHtml("#0000ff"); // blue is Color(0.0, 0.0, 1.0, 1.0)
var green = Color.FromHtml("#0F0"); // green is Color(0.0, 1.0, 0.0, 1.0)
var col = Color.FromHtml("663399cc"); // col is Color(0.4, 0.2, 0.6, 0.8)
2022-02-08 05:13:48 +00:00
[/csharp]
[/codeblocks]
2021-03-18 13:44:42 +00:00
</description>
</method>
<method name= "html_is_valid" qualifiers= "static" >
2021-07-30 13:28:05 +00:00
<return type= "bool" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "color" type= "String" />
2021-03-18 13:44:42 +00:00
<description >
2022-11-21 14:22:45 +00:00
Returns [code]true[/code] if [param color] is a valid HTML hexadecimal color string. The string must be a hexadecimal value (case-insensitive) of either 3, 4, 6 or 8 digits, and may be prefixed by a hash sign ([code]#[/code]). This method is identical to [method String.is_valid_html_color].
2022-02-08 05:13:48 +00:00
[codeblocks]
[gdscript]
2022-11-21 14:22:45 +00:00
Color.html_is_valid("#55aaFF") # Returns true
Color.html_is_valid("#55AAFF20") # Returns true
Color.html_is_valid("55AAFF") # Returns true
Color.html_is_valid("#F2C") # Returns true
Color.html_is_valid("#AABBC) # Returns false
Color.html_is_valid("#55aaFF5") # Returns false
2022-02-08 05:13:48 +00:00
[/gdscript]
[csharp]
2022-12-06 03:58:16 +00:00
Color.IsHtmlValid("#55AAFF"); // Returns true
Color.IsHtmlValid("#55AAFF20"); // Returns true
Color.IsHtmlValid("55AAFF"); // Returns true
Color.IsHtmlValid("#F2C"); // Returns true
2022-11-21 14:22:45 +00:00
2022-12-06 03:58:16 +00:00
Color.IsHtmlValid("#AABBC"); // Returns false
Color.IsHtmlValid("#55aaFF5"); // Returns false
2022-02-08 05:13:48 +00:00
[/csharp]
[/codeblocks]
2021-03-18 13:44:42 +00:00
</description>
</method>
<method name= "inverted" qualifiers= "const" >
2021-07-30 13:28:05 +00:00
<return type= "Color" />
2017-09-12 20:42:36 +00:00
<description >
2022-11-21 14:22:45 +00:00
Returns the color with its [member r], [member g], and [member b] components inverted ([code](1 - r, 1 - g, 1 - b, a)[/code]).
2020-09-12 15:06:13 +00:00
[codeblocks]
[gdscript]
2022-11-21 14:22:45 +00:00
var black = Color.WHITE.inverted()
2020-09-12 15:06:13 +00:00
var color = Color(0.3, 0.4, 0.9)
2020-10-11 08:01:18 +00:00
var inverted_color = color.inverted() # Equivalent to `Color(0.7, 0.6, 0.1)`
2020-09-12 15:06:13 +00:00
[/gdscript]
[csharp]
2022-11-21 14:22:45 +00:00
var black = Colors.White.Inverted();
2020-09-12 15:06:13 +00:00
var color = new Color(0.3f, 0.4f, 0.9f);
2020-10-11 08:01:18 +00:00
Color invertedColor = color.Inverted(); // Equivalent to `new Color(0.7f, 0.6f, 0.1f)`
2020-09-12 15:06:13 +00:00
[/csharp]
[/codeblocks]
2017-09-12 20:42:36 +00:00
</description>
</method>
2021-03-18 13:44:42 +00:00
<method name= "is_equal_approx" qualifiers= "const" >
2021-07-30 13:28:05 +00:00
<return type= "bool" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "to" type= "Color" />
2019-11-08 07:33:48 +00:00
<description >
2022-08-12 17:13:27 +00:00
Returns [code]true[/code] if this color and [param to] are approximately equal, by running [method @GlobalScope.is_equal_approx] on each component.
2019-11-08 07:33:48 +00:00
</description>
</method>
2021-03-18 13:44:42 +00:00
<method name= "lerp" qualifiers= "const" >
2021-07-30 13:28:05 +00:00
<return type= "Color" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "to" type= "Color" />
<param index= "1" name= "weight" type= "float" />
2017-10-13 04:49:31 +00:00
<description >
2022-11-21 14:22:45 +00:00
Returns the linear interpolation between this color's components and [param to]'s components. The interpolation factor [param weight] should be between 0.0 and 1.0 (inclusive). See also [method @GlobalScope.lerp].
2020-09-12 15:06:13 +00:00
[codeblocks]
[gdscript]
2022-11-21 14:22:45 +00:00
var red = Color(1.0, 0.0, 0.0)
var aqua = Color(0.0, 1.0, 0.8)
red.lerp(aqua, 0.2) # Returns Color(0.8, 0.2, 0.16)
red.lerp(aqua, 0.5) # Returns Color(0.5, 0.5, 0.4)
red.lerp(aqua, 1.0) # Returns Color(0.0, 1.0, 0.8)
2020-09-12 15:06:13 +00:00
[/gdscript]
[csharp]
2022-11-21 14:22:45 +00:00
var red = new Color(1.0f, 0.0f, 0.0f);
var aqua = new Color(0.0f, 1.0f, 0.8f);
red.Lerp(aqua, 0.2f); // Returns Color(0.8f, 0.2f, 0.16f)
red.Lerp(aqua, 0.5f); // Returns Color(0.5f, 0.5f, 0.4f)
red.Lerp(aqua, 1.0f); // Returns Color(0.0f, 1.0f, 0.8f)
2020-09-12 15:06:13 +00:00
[/csharp]
[/codeblocks]
2017-10-13 04:49:31 +00:00
</description>
</method>
2021-03-18 13:44:42 +00:00
<method name= "lightened" qualifiers= "const" >
2021-07-30 13:28:05 +00:00
<return type= "Color" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "amount" type= "float" />
2017-09-12 20:42:36 +00:00
<description >
2022-11-21 14:22:45 +00:00
Returns a new color resulting from making this color lighter by the specified [param amount], which should be a ratio from 0.0 to 1.0. See also [method darkened].
2020-09-12 15:06:13 +00:00
[codeblocks]
[gdscript]
2020-03-16 09:07:33 +00:00
var green = Color(0.0, 1.0, 0.0)
2022-11-21 14:22:45 +00:00
var light_green = green.lightened(0.2) # 20% lighter than regular green
2020-09-12 15:06:13 +00:00
[/gdscript]
[csharp]
var green = new Color(0.0f, 1.0f, 0.0f);
2022-11-21 14:22:45 +00:00
Color lightGreen = green.Lightened(0.2f); // 20% lighter than regular green
2020-09-12 15:06:13 +00:00
[/csharp]
[/codeblocks]
2017-09-12 20:42:36 +00:00
</description>
</method>
2022-04-13 08:37:22 +00:00
<method name= "linear_to_srgb" qualifiers= "const" >
<return type= "Color" />
<description >
2022-11-21 14:22:45 +00:00
Returns the color converted to the [url=https://en.wikipedia.org/wiki/SRGB]sRGB[/url] color space. This method assumes the original color is in the linear color space. See also [method srgb_to_linear] which performs the opposite operation.
2022-04-13 08:37:22 +00:00
</description>
</method>
<method name= "srgb_to_linear" qualifiers= "const" >
<return type= "Color" />
<description >
2022-11-21 14:22:45 +00:00
Returns the color converted to the linear color space. This method assumes the original color already is in the sRGB color space. See also [method linear_to_srgb] which performs the opposite operation.
2022-04-13 08:37:22 +00:00
</description>
</method>
2021-03-18 13:44:42 +00:00
<method name= "to_abgr32" qualifiers= "const" >
2021-07-30 13:28:05 +00:00
<return type= "int" />
2017-09-12 20:42:36 +00:00
<description >
2022-11-21 14:22:45 +00:00
Returns the color converted to a 32-bit integer in ABGR format (each component is 8 bits). ABGR is the reversed version of the default RGBA format.
2020-09-12 15:06:13 +00:00
[codeblocks]
[gdscript]
var color = Color(1, 0.5, 0.2)
print(color.to_abgr32()) # Prints 4281565439
[/gdscript]
[csharp]
var color = new Color(1.0f, 0.5f, 0.2f);
GD.Print(color.ToAbgr32()); // Prints 4281565439
[/csharp]
[/codeblocks]
2017-09-12 20:42:36 +00:00
</description>
</method>
2021-03-18 13:44:42 +00:00
<method name= "to_abgr64" qualifiers= "const" >
2021-07-30 13:28:05 +00:00
<return type= "int" />
2018-07-25 20:33:42 +00:00
<description >
2022-11-21 14:22:45 +00:00
Returns the color converted to a 64-bit integer in ABGR format (each component is 16 bits). ABGR is the reversed version of the default RGBA format.
2020-09-12 15:06:13 +00:00
[codeblocks]
[gdscript]
var color = Color(1, 0.5, 0.2)
print(color.to_abgr64()) # Prints -225178692812801
[/gdscript]
[csharp]
var color = new Color(1.0f, 0.5f, 0.2f);
GD.Print(color.ToAbgr64()); // Prints -225178692812801
[/csharp]
[/codeblocks]
2018-07-25 20:33:42 +00:00
</description>
</method>
2021-03-18 13:44:42 +00:00
<method name= "to_argb32" qualifiers= "const" >
2021-07-30 13:28:05 +00:00
<return type= "int" />
2018-07-25 20:33:42 +00:00
<description >
2022-11-21 14:22:45 +00:00
Returns the color converted to a 32-bit integer in ARGB format (each component is 8 bits). ARGB is more compatible with DirectX.
2020-09-12 15:06:13 +00:00
[codeblocks]
[gdscript]
var color = Color(1, 0.5, 0.2)
print(color.to_argb32()) # Prints 4294934323
[/gdscript]
[csharp]
var color = new Color(1.0f, 0.5f, 0.2f);
GD.Print(color.ToArgb32()); // Prints 4294934323
[/csharp]
[/codeblocks]
2018-07-25 20:33:42 +00:00
</description>
</method>
2021-03-18 13:44:42 +00:00
<method name= "to_argb64" qualifiers= "const" >
2021-07-30 13:28:05 +00:00
<return type= "int" />
2017-09-12 20:42:36 +00:00
<description >
2022-11-21 14:22:45 +00:00
Returns the color converted to a 64-bit integer in ARGB format (each component is 16 bits). ARGB is more compatible with DirectX.
2020-09-12 15:06:13 +00:00
[codeblocks]
[gdscript]
var color = Color(1, 0.5, 0.2)
print(color.to_argb64()) # Prints -2147470541
[/gdscript]
[csharp]
var color = new Color(1.0f, 0.5f, 0.2f);
GD.Print(color.ToArgb64()); // Prints -2147470541
[/csharp]
[/codeblocks]
2018-07-25 20:33:42 +00:00
</description>
</method>
2021-03-18 13:44:42 +00:00
<method name= "to_html" qualifiers= "const" >
2021-07-30 13:28:05 +00:00
<return type= "String" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "with_alpha" type= "bool" default= "true" />
2018-07-25 20:33:42 +00:00
<description >
2022-11-21 14:22:45 +00:00
Returns the color converted to an HTML hexadecimal color [String] in RGBA format, without the hash ([code]#[/code]) prefix.
Setting [param with_alpha] to [code]false[/code], excludes alpha from the hexadecimal string, using RGB format instead of RGBA format.
2020-09-12 15:06:13 +00:00
[codeblocks]
[gdscript]
2022-11-21 14:22:45 +00:00
var white = Color(1, 1, 1, 0.5)
var with_alpha = white.to_html() # Returns "ffffff7f"
var without_alpha = white.to_html(false) # Returns "ffffff"
2020-09-12 15:06:13 +00:00
[/gdscript]
[csharp]
2022-11-21 14:22:45 +00:00
var white = new Color(1, 1, 1, 0.5f);
string withAlpha = white.ToHtml(); // Returns "ffffff7f"
string withoutAlpha = white.ToHtml(false); // Returns "ffffff"
2020-09-12 15:06:13 +00:00
[/csharp]
[/codeblocks]
2018-07-25 20:33:42 +00:00
</description>
</method>
2021-03-18 13:44:42 +00:00
<method name= "to_rgba32" qualifiers= "const" >
2021-07-30 13:28:05 +00:00
<return type= "int" />
2018-07-25 20:33:42 +00:00
<description >
2022-11-21 14:22:45 +00:00
Returns the color converted to a 32-bit integer in RGBA format (each component is 8 bits). RGBA is Godot's default format.
2020-09-12 15:06:13 +00:00
[codeblocks]
[gdscript]
var color = Color(1, 0.5, 0.2)
print(color.to_rgba32()) # Prints 4286526463
[/gdscript]
[csharp]
var color = new Color(1, 0.5f, 0.2f);
GD.Print(color.ToRgba32()); // Prints 4286526463
[/csharp]
[/codeblocks]
2018-07-25 20:33:42 +00:00
</description>
</method>
2021-03-18 13:44:42 +00:00
<method name= "to_rgba64" qualifiers= "const" >
2021-07-30 13:28:05 +00:00
<return type= "int" />
2018-07-25 20:33:42 +00:00
<description >
2022-11-21 14:22:45 +00:00
Returns the color converted to a 64-bit integer in RGBA format (each component is 16 bits). RGBA is Godot's default format.
2020-09-12 15:06:13 +00:00
[codeblocks]
[gdscript]
var color = Color(1, 0.5, 0.2)
print(color.to_rgba64()) # Prints -140736629309441
[/gdscript]
[csharp]
var color = new Color(1, 0.5f, 0.2f);
GD.Print(color.ToRgba64()); // Prints -140736629309441
[/csharp]
[/codeblocks]
2017-09-12 20:42:36 +00:00
</description>
</method>
</methods>
<members >
2019-06-29 10:38:01 +00:00
<member name= "a" type= "float" setter= "" getter= "" default= "1.0" >
2021-12-24 08:45:09 +00:00
The color's alpha component, typically on the range of 0 to 1. A value of 0 means that the color is fully transparent. A value of 1 means that the color is fully opaque.
2017-09-12 20:42:36 +00:00
</member>
2019-06-29 10:38:01 +00:00
<member name= "a8" type= "int" setter= "" getter= "" default= "255" >
2022-11-21 14:22:45 +00:00
Wrapper for [member a] that uses the range 0 to 255, instead of 0 to 1.
2017-09-12 20:42:36 +00:00
</member>
2019-06-29 10:38:01 +00:00
<member name= "b" type= "float" setter= "" getter= "" default= "0.0" >
2020-07-21 18:07:00 +00:00
The color's blue component, typically on the range of 0 to 1.
2017-09-12 20:42:36 +00:00
</member>
2019-06-29 10:38:01 +00:00
<member name= "b8" type= "int" setter= "" getter= "" default= "0" >
2022-11-21 14:22:45 +00:00
Wrapper for [member b] that uses the range 0 to 255, instead of 0 to 1.
2017-09-12 20:42:36 +00:00
</member>
2019-06-29 10:38:01 +00:00
<member name= "g" type= "float" setter= "" getter= "" default= "0.0" >
2020-07-21 18:07:00 +00:00
The color's green component, typically on the range of 0 to 1.
2017-09-12 20:42:36 +00:00
</member>
2019-06-29 10:38:01 +00:00
<member name= "g8" type= "int" setter= "" getter= "" default= "0" >
2022-11-21 14:22:45 +00:00
Wrapper for [member g] that uses the range 0 to 255, instead of 0 to 1.
2017-09-12 20:42:36 +00:00
</member>
2019-06-29 10:38:01 +00:00
<member name= "h" type= "float" setter= "" getter= "" default= "0.0" >
2020-07-21 18:07:00 +00:00
The HSV hue of this color, on the range 0 to 1.
2017-09-12 20:42:36 +00:00
</member>
2019-06-29 10:38:01 +00:00
<member name= "r" type= "float" setter= "" getter= "" default= "0.0" >
2020-07-21 18:07:00 +00:00
The color's red component, typically on the range of 0 to 1.
2017-09-12 20:42:36 +00:00
</member>
2019-06-29 10:38:01 +00:00
<member name= "r8" type= "int" setter= "" getter= "" default= "0" >
2022-11-21 14:22:45 +00:00
Wrapper for [member r] that uses the range 0 to 255, instead of 0 to 1.
2017-09-12 20:42:36 +00:00
</member>
2019-06-29 10:38:01 +00:00
<member name= "s" type= "float" setter= "" getter= "" default= "0.0" >
2020-07-21 18:07:00 +00:00
The HSV saturation of this color, on the range 0 to 1.
2017-09-12 20:42:36 +00:00
</member>
2019-06-29 10:38:01 +00:00
<member name= "v" type= "float" setter= "" getter= "" default= "0.0" >
2020-07-21 18:07:00 +00:00
The HSV value (brightness) of this color, on the range 0 to 1.
2017-09-12 20:42:36 +00:00
</member>
</members>
<constants >
2022-03-17 18:52:39 +00:00
<constant name= "ALICE_BLUE" value= "Color(0.941176, 0.972549, 1, 1)" >
2020-01-26 11:07:59 +00:00
Alice blue color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "ANTIQUE_WHITE" value= "Color(0.980392, 0.921569, 0.843137, 1)" >
2020-01-26 11:07:59 +00:00
Antique white color.
2018-08-20 22:35:30 +00:00
</constant>
2019-09-24 17:45:03 +00:00
<constant name= "AQUA" value= "Color(0, 1, 1, 1)" >
2020-01-26 11:07:59 +00:00
Aqua color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "AQUAMARINE" value= "Color(0.498039, 1, 0.831373, 1)" >
2020-01-26 11:07:59 +00:00
Aquamarine color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "AZURE" value= "Color(0.941176, 1, 1, 1)" >
2020-01-26 11:07:59 +00:00
Azure color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "BEIGE" value= "Color(0.960784, 0.960784, 0.862745, 1)" >
2020-01-26 11:07:59 +00:00
Beige color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "BISQUE" value= "Color(1, 0.894118, 0.768627, 1)" >
2020-01-26 11:07:59 +00:00
Bisque color.
2018-08-20 22:35:30 +00:00
</constant>
2019-09-24 17:45:03 +00:00
<constant name= "BLACK" value= "Color(0, 0, 0, 1)" >
2022-11-21 14:22:45 +00:00
Black color. In GDScript, this is the default value of any color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "BLANCHED_ALMOND" value= "Color(1, 0.921569, 0.803922, 1)" >
2021-01-12 18:22:31 +00:00
Blanched almond color.
2018-08-20 22:35:30 +00:00
</constant>
2019-09-24 17:45:03 +00:00
<constant name= "BLUE" value= "Color(0, 0, 1, 1)" >
2020-01-26 11:07:59 +00:00
Blue color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "BLUE_VIOLET" value= "Color(0.541176, 0.168627, 0.886275, 1)" >
2020-01-26 11:07:59 +00:00
Blue violet color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "BROWN" value= "Color(0.647059, 0.164706, 0.164706, 1)" >
2020-01-26 11:07:59 +00:00
Brown color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "BURLYWOOD" value= "Color(0.870588, 0.721569, 0.529412, 1)" >
2021-01-12 18:22:31 +00:00
Burlywood color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "CADET_BLUE" value= "Color(0.372549, 0.619608, 0.627451, 1)" >
2020-01-26 11:07:59 +00:00
Cadet blue color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "CHARTREUSE" value= "Color(0.498039, 1, 0, 1)" >
2020-01-26 11:07:59 +00:00
Chartreuse color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "CHOCOLATE" value= "Color(0.823529, 0.411765, 0.117647, 1)" >
2020-01-26 11:07:59 +00:00
Chocolate color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "CORAL" value= "Color(1, 0.498039, 0.313726, 1)" >
2020-01-26 11:07:59 +00:00
Coral color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "CORNFLOWER_BLUE" value= "Color(0.392157, 0.584314, 0.929412, 1)" >
2021-01-12 18:22:31 +00:00
Cornflower blue color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "CORNSILK" value= "Color(1, 0.972549, 0.862745, 1)" >
2021-01-12 18:22:31 +00:00
Cornsilk color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "CRIMSON" value= "Color(0.862745, 0.0784314, 0.235294, 1)" >
2020-01-26 11:07:59 +00:00
Crimson color.
2018-08-20 22:35:30 +00:00
</constant>
2019-09-24 17:45:03 +00:00
<constant name= "CYAN" value= "Color(0, 1, 1, 1)" >
2020-01-26 11:07:59 +00:00
Cyan color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "DARK_BLUE" value= "Color(0, 0, 0.545098, 1)" >
2020-01-26 11:07:59 +00:00
Dark blue color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "DARK_CYAN" value= "Color(0, 0.545098, 0.545098, 1)" >
2020-01-26 11:07:59 +00:00
Dark cyan color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "DARK_GOLDENROD" value= "Color(0.721569, 0.52549, 0.0431373, 1)" >
2020-01-26 11:07:59 +00:00
Dark goldenrod color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "DARK_GRAY" value= "Color(0.662745, 0.662745, 0.662745, 1)" >
2020-01-26 11:07:59 +00:00
Dark gray color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "DARK_GREEN" value= "Color(0, 0.392157, 0, 1)" >
2020-01-26 11:07:59 +00:00
Dark green color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "DARK_KHAKI" value= "Color(0.741176, 0.717647, 0.419608, 1)" >
2020-01-26 11:07:59 +00:00
Dark khaki color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "DARK_MAGENTA" value= "Color(0.545098, 0, 0.545098, 1)" >
2020-01-26 11:07:59 +00:00
Dark magenta color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "DARK_OLIVE_GREEN" value= "Color(0.333333, 0.419608, 0.184314, 1)" >
2020-01-26 11:07:59 +00:00
Dark olive green color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "DARK_ORANGE" value= "Color(1, 0.54902, 0, 1)" >
2020-01-26 11:07:59 +00:00
Dark orange color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "DARK_ORCHID" value= "Color(0.6, 0.196078, 0.8, 1)" >
2020-01-26 11:07:59 +00:00
Dark orchid color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "DARK_RED" value= "Color(0.545098, 0, 0, 1)" >
2020-01-26 11:07:59 +00:00
Dark red color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "DARK_SALMON" value= "Color(0.913725, 0.588235, 0.478431, 1)" >
2020-01-26 11:07:59 +00:00
Dark salmon color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "DARK_SEA_GREEN" value= "Color(0.560784, 0.737255, 0.560784, 1)" >
2020-01-26 11:07:59 +00:00
Dark sea green color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "DARK_SLATE_BLUE" value= "Color(0.282353, 0.239216, 0.545098, 1)" >
2020-01-26 11:07:59 +00:00
Dark slate blue color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "DARK_SLATE_GRAY" value= "Color(0.184314, 0.309804, 0.309804, 1)" >
2020-01-26 11:07:59 +00:00
Dark slate gray color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "DARK_TURQUOISE" value= "Color(0, 0.807843, 0.819608, 1)" >
2020-01-26 11:07:59 +00:00
Dark turquoise color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "DARK_VIOLET" value= "Color(0.580392, 0, 0.827451, 1)" >
2020-01-26 11:07:59 +00:00
Dark violet color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "DEEP_PINK" value= "Color(1, 0.0784314, 0.576471, 1)" >
2020-01-26 11:07:59 +00:00
Deep pink color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "DEEP_SKY_BLUE" value= "Color(0, 0.74902, 1, 1)" >
2020-01-26 11:07:59 +00:00
Deep sky blue color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "DIM_GRAY" value= "Color(0.411765, 0.411765, 0.411765, 1)" >
2020-01-26 11:07:59 +00:00
Dim gray color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "DODGER_BLUE" value= "Color(0.117647, 0.564706, 1, 1)" >
2020-01-26 11:07:59 +00:00
Dodger blue color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "FIREBRICK" value= "Color(0.698039, 0.133333, 0.133333, 1)" >
2020-01-26 11:07:59 +00:00
Firebrick color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "FLORAL_WHITE" value= "Color(1, 0.980392, 0.941176, 1)" >
2020-01-26 11:07:59 +00:00
Floral white color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "FOREST_GREEN" value= "Color(0.133333, 0.545098, 0.133333, 1)" >
2020-01-26 11:07:59 +00:00
Forest green color.
2018-08-20 22:35:30 +00:00
</constant>
2019-09-24 17:45:03 +00:00
<constant name= "FUCHSIA" value= "Color(1, 0, 1, 1)" >
2020-01-26 11:07:59 +00:00
Fuchsia color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "GAINSBORO" value= "Color(0.862745, 0.862745, 0.862745, 1)" >
2020-01-26 11:07:59 +00:00
Gainsboro color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "GHOST_WHITE" value= "Color(0.972549, 0.972549, 1, 1)" >
2020-01-26 11:07:59 +00:00
Ghost white color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "GOLD" value= "Color(1, 0.843137, 0, 1)" >
2020-01-26 11:07:59 +00:00
Gold color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "GOLDENROD" value= "Color(0.854902, 0.647059, 0.12549, 1)" >
2020-01-26 11:07:59 +00:00
Goldenrod color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "GRAY" value= "Color(0.745098, 0.745098, 0.745098, 1)" >
2020-02-13 09:08:52 +00:00
Gray color.
</constant>
2019-09-24 17:45:03 +00:00
<constant name= "GREEN" value= "Color(0, 1, 0, 1)" >
2020-01-26 11:07:59 +00:00
Green color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "GREEN_YELLOW" value= "Color(0.678431, 1, 0.184314, 1)" >
2020-01-26 11:07:59 +00:00
Green yellow color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "HONEYDEW" value= "Color(0.941176, 1, 0.941176, 1)" >
2020-01-26 11:07:59 +00:00
Honeydew color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "HOT_PINK" value= "Color(1, 0.411765, 0.705882, 1)" >
2020-01-26 11:07:59 +00:00
Hot pink color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "INDIAN_RED" value= "Color(0.803922, 0.360784, 0.360784, 1)" >
2020-01-26 11:07:59 +00:00
Indian red color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "INDIGO" value= "Color(0.294118, 0, 0.509804, 1)" >
2020-01-26 11:07:59 +00:00
Indigo color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "IVORY" value= "Color(1, 1, 0.941176, 1)" >
2020-01-26 11:07:59 +00:00
Ivory color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "KHAKI" value= "Color(0.941176, 0.901961, 0.54902, 1)" >
2020-01-26 11:07:59 +00:00
Khaki color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "LAVENDER" value= "Color(0.901961, 0.901961, 0.980392, 1)" >
2020-01-26 11:07:59 +00:00
Lavender color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "LAVENDER_BLUSH" value= "Color(1, 0.941176, 0.960784, 1)" >
2020-01-26 11:07:59 +00:00
Lavender blush color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "LAWN_GREEN" value= "Color(0.486275, 0.988235, 0, 1)" >
2020-01-26 11:07:59 +00:00
Lawn green color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "LEMON_CHIFFON" value= "Color(1, 0.980392, 0.803922, 1)" >
2020-01-26 11:07:59 +00:00
Lemon chiffon color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "LIGHT_BLUE" value= "Color(0.678431, 0.847059, 0.901961, 1)" >
2020-01-26 11:07:59 +00:00
Light blue color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "LIGHT_CORAL" value= "Color(0.941176, 0.501961, 0.501961, 1)" >
2020-01-26 11:07:59 +00:00
Light coral color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "LIGHT_CYAN" value= "Color(0.878431, 1, 1, 1)" >
2020-01-26 11:07:59 +00:00
Light cyan color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "LIGHT_GOLDENROD" value= "Color(0.980392, 0.980392, 0.823529, 1)" >
2020-01-26 11:07:59 +00:00
Light goldenrod color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "LIGHT_GRAY" value= "Color(0.827451, 0.827451, 0.827451, 1)" >
2020-01-26 11:07:59 +00:00
Light gray color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "LIGHT_GREEN" value= "Color(0.564706, 0.933333, 0.564706, 1)" >
2020-01-26 11:07:59 +00:00
Light green color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "LIGHT_PINK" value= "Color(1, 0.713726, 0.756863, 1)" >
2020-01-26 11:07:59 +00:00
Light pink color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "LIGHT_SALMON" value= "Color(1, 0.627451, 0.478431, 1)" >
2020-01-26 11:07:59 +00:00
Light salmon color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "LIGHT_SEA_GREEN" value= "Color(0.12549, 0.698039, 0.666667, 1)" >
2020-01-26 11:07:59 +00:00
Light sea green color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "LIGHT_SKY_BLUE" value= "Color(0.529412, 0.807843, 0.980392, 1)" >
2020-01-26 11:07:59 +00:00
Light sky blue color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "LIGHT_SLATE_GRAY" value= "Color(0.466667, 0.533333, 0.6, 1)" >
2020-01-26 11:07:59 +00:00
Light slate gray color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "LIGHT_STEEL_BLUE" value= "Color(0.690196, 0.768627, 0.870588, 1)" >
2020-01-26 11:07:59 +00:00
Light steel blue color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "LIGHT_YELLOW" value= "Color(1, 1, 0.878431, 1)" >
2020-01-26 11:07:59 +00:00
Light yellow color.
2018-08-20 22:35:30 +00:00
</constant>
2019-09-24 17:45:03 +00:00
<constant name= "LIME" value= "Color(0, 1, 0, 1)" >
2020-01-26 11:07:59 +00:00
Lime color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "LIME_GREEN" value= "Color(0.196078, 0.803922, 0.196078, 1)" >
2020-01-26 11:07:59 +00:00
Lime green color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "LINEN" value= "Color(0.980392, 0.941176, 0.901961, 1)" >
2020-01-26 11:07:59 +00:00
Linen color.
2018-08-20 22:35:30 +00:00
</constant>
2019-09-24 17:45:03 +00:00
<constant name= "MAGENTA" value= "Color(1, 0, 1, 1)" >
2020-01-26 11:07:59 +00:00
Magenta color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "MAROON" value= "Color(0.690196, 0.188235, 0.376471, 1)" >
2020-01-26 11:07:59 +00:00
Maroon color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "MEDIUM_AQUAMARINE" value= "Color(0.4, 0.803922, 0.666667, 1)" >
2020-01-26 11:07:59 +00:00
Medium aquamarine color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "MEDIUM_BLUE" value= "Color(0, 0, 0.803922, 1)" >
2020-01-26 11:07:59 +00:00
Medium blue color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "MEDIUM_ORCHID" value= "Color(0.729412, 0.333333, 0.827451, 1)" >
2020-01-26 11:07:59 +00:00
Medium orchid color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "MEDIUM_PURPLE" value= "Color(0.576471, 0.439216, 0.858824, 1)" >
2020-01-26 11:07:59 +00:00
Medium purple color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "MEDIUM_SEA_GREEN" value= "Color(0.235294, 0.701961, 0.443137, 1)" >
2020-01-26 11:07:59 +00:00
Medium sea green color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "MEDIUM_SLATE_BLUE" value= "Color(0.482353, 0.407843, 0.933333, 1)" >
2020-01-26 11:07:59 +00:00
Medium slate blue color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "MEDIUM_SPRING_GREEN" value= "Color(0, 0.980392, 0.603922, 1)" >
2020-01-26 11:07:59 +00:00
Medium spring green color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "MEDIUM_TURQUOISE" value= "Color(0.282353, 0.819608, 0.8, 1)" >
2020-01-26 11:07:59 +00:00
Medium turquoise color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "MEDIUM_VIOLET_RED" value= "Color(0.780392, 0.0823529, 0.521569, 1)" >
2020-01-26 11:07:59 +00:00
Medium violet red color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "MIDNIGHT_BLUE" value= "Color(0.0980392, 0.0980392, 0.439216, 1)" >
2020-01-26 11:07:59 +00:00
Midnight blue color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "MINT_CREAM" value= "Color(0.960784, 1, 0.980392, 1)" >
2020-01-26 11:07:59 +00:00
Mint cream color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "MISTY_ROSE" value= "Color(1, 0.894118, 0.882353, 1)" >
2020-01-26 11:07:59 +00:00
Misty rose color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "MOCCASIN" value= "Color(1, 0.894118, 0.709804, 1)" >
2020-01-26 11:07:59 +00:00
Moccasin color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "NAVAJO_WHITE" value= "Color(1, 0.870588, 0.678431, 1)" >
2020-01-26 11:07:59 +00:00
Navajo white color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "NAVY_BLUE" value= "Color(0, 0, 0.501961, 1)" >
2020-01-26 11:07:59 +00:00
Navy blue color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "OLD_LACE" value= "Color(0.992157, 0.960784, 0.901961, 1)" >
2020-01-26 11:07:59 +00:00
Old lace color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "OLIVE" value= "Color(0.501961, 0.501961, 0, 1)" >
2020-01-26 11:07:59 +00:00
Olive color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "OLIVE_DRAB" value= "Color(0.419608, 0.556863, 0.137255, 1)" >
2020-01-26 11:07:59 +00:00
Olive drab color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "ORANGE" value= "Color(1, 0.647059, 0, 1)" >
2020-01-26 11:07:59 +00:00
Orange color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "ORANGE_RED" value= "Color(1, 0.270588, 0, 1)" >
2020-01-26 11:07:59 +00:00
Orange red color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "ORCHID" value= "Color(0.854902, 0.439216, 0.839216, 1)" >
2020-01-26 11:07:59 +00:00
Orchid color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "PALE_GOLDENROD" value= "Color(0.933333, 0.909804, 0.666667, 1)" >
2020-01-26 11:07:59 +00:00
Pale goldenrod color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "PALE_GREEN" value= "Color(0.596078, 0.984314, 0.596078, 1)" >
2020-01-26 11:07:59 +00:00
Pale green color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "PALE_TURQUOISE" value= "Color(0.686275, 0.933333, 0.933333, 1)" >
2020-01-26 11:07:59 +00:00
Pale turquoise color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "PALE_VIOLET_RED" value= "Color(0.858824, 0.439216, 0.576471, 1)" >
2020-01-26 11:07:59 +00:00
Pale violet red color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "PAPAYA_WHIP" value= "Color(1, 0.937255, 0.835294, 1)" >
2020-01-26 11:07:59 +00:00
Papaya whip color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "PEACH_PUFF" value= "Color(1, 0.854902, 0.72549, 1)" >
2020-01-26 11:07:59 +00:00
Peach puff color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "PERU" value= "Color(0.803922, 0.521569, 0.247059, 1)" >
2020-01-26 11:07:59 +00:00
Peru color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "PINK" value= "Color(1, 0.752941, 0.796078, 1)" >
2020-01-26 11:07:59 +00:00
Pink color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "PLUM" value= "Color(0.866667, 0.627451, 0.866667, 1)" >
2020-01-26 11:07:59 +00:00
Plum color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "POWDER_BLUE" value= "Color(0.690196, 0.878431, 0.901961, 1)" >
2020-01-26 11:07:59 +00:00
Powder blue color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "PURPLE" value= "Color(0.627451, 0.12549, 0.941176, 1)" >
2020-01-26 11:07:59 +00:00
Purple color.
2018-08-20 22:35:30 +00:00
</constant>
2019-09-24 17:45:03 +00:00
<constant name= "REBECCA_PURPLE" value= "Color(0.4, 0.2, 0.6, 1)" >
2020-01-26 11:07:59 +00:00
Rebecca purple color.
2018-08-20 22:35:30 +00:00
</constant>
2019-09-24 17:45:03 +00:00
<constant name= "RED" value= "Color(1, 0, 0, 1)" >
2020-01-26 11:07:59 +00:00
Red color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "ROSY_BROWN" value= "Color(0.737255, 0.560784, 0.560784, 1)" >
2020-01-26 11:07:59 +00:00
Rosy brown color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "ROYAL_BLUE" value= "Color(0.254902, 0.411765, 0.882353, 1)" >
2020-01-26 11:07:59 +00:00
Royal blue color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "SADDLE_BROWN" value= "Color(0.545098, 0.270588, 0.0745098, 1)" >
2020-01-26 11:07:59 +00:00
Saddle brown color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "SALMON" value= "Color(0.980392, 0.501961, 0.447059, 1)" >
2020-01-26 11:07:59 +00:00
Salmon color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "SANDY_BROWN" value= "Color(0.956863, 0.643137, 0.376471, 1)" >
2020-01-26 11:07:59 +00:00
Sandy brown color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "SEA_GREEN" value= "Color(0.180392, 0.545098, 0.341176, 1)" >
2020-01-26 11:07:59 +00:00
Sea green color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "SEASHELL" value= "Color(1, 0.960784, 0.933333, 1)" >
2020-01-26 11:07:59 +00:00
Seashell color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "SIENNA" value= "Color(0.627451, 0.321569, 0.176471, 1)" >
2020-01-26 11:07:59 +00:00
Sienna color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "SILVER" value= "Color(0.752941, 0.752941, 0.752941, 1)" >
2020-01-26 11:07:59 +00:00
Silver color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "SKY_BLUE" value= "Color(0.529412, 0.807843, 0.921569, 1)" >
2020-01-26 11:07:59 +00:00
Sky blue color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "SLATE_BLUE" value= "Color(0.415686, 0.352941, 0.803922, 1)" >
2020-01-26 11:07:59 +00:00
Slate blue color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "SLATE_GRAY" value= "Color(0.439216, 0.501961, 0.564706, 1)" >
2020-01-26 11:07:59 +00:00
Slate gray color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "SNOW" value= "Color(1, 0.980392, 0.980392, 1)" >
2020-01-26 11:07:59 +00:00
Snow color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "SPRING_GREEN" value= "Color(0, 1, 0.498039, 1)" >
2020-01-26 11:07:59 +00:00
Spring green color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "STEEL_BLUE" value= "Color(0.27451, 0.509804, 0.705882, 1)" >
2020-01-26 11:07:59 +00:00
Steel blue color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "TAN" value= "Color(0.823529, 0.705882, 0.54902, 1)" >
2020-01-26 11:07:59 +00:00
Tan color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "TEAL" value= "Color(0, 0.501961, 0.501961, 1)" >
2020-01-26 11:07:59 +00:00
Teal color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "THISTLE" value= "Color(0.847059, 0.74902, 0.847059, 1)" >
2020-01-26 11:07:59 +00:00
Thistle color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "TOMATO" value= "Color(1, 0.388235, 0.278431, 1)" >
2020-01-26 11:07:59 +00:00
Tomato color.
2018-08-20 22:35:30 +00:00
</constant>
2019-09-24 17:45:03 +00:00
<constant name= "TRANSPARENT" value= "Color(1, 1, 1, 0)" >
2021-01-12 18:22:31 +00:00
Transparent color (white with zero alpha).
2019-05-28 16:08:13 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "TURQUOISE" value= "Color(0.25098, 0.878431, 0.815686, 1)" >
2020-01-26 11:07:59 +00:00
Turquoise color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "VIOLET" value= "Color(0.933333, 0.509804, 0.933333, 1)" >
2020-01-26 11:07:59 +00:00
Violet color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "WEB_GRAY" value= "Color(0.501961, 0.501961, 0.501961, 1)" >
2020-01-26 11:07:59 +00:00
Web gray color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "WEB_GREEN" value= "Color(0, 0.501961, 0, 1)" >
2020-01-26 11:07:59 +00:00
Web green color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "WEB_MAROON" value= "Color(0.501961, 0, 0, 1)" >
2020-01-26 11:07:59 +00:00
Web maroon color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "WEB_PURPLE" value= "Color(0.501961, 0, 0.501961, 1)" >
2020-01-26 11:07:59 +00:00
Web purple color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "WHEAT" value= "Color(0.960784, 0.870588, 0.701961, 1)" >
2020-01-26 11:07:59 +00:00
Wheat color.
2018-08-20 22:35:30 +00:00
</constant>
2019-09-24 17:45:03 +00:00
<constant name= "WHITE" value= "Color(1, 1, 1, 1)" >
2020-01-26 11:07:59 +00:00
White color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "WHITE_SMOKE" value= "Color(0.960784, 0.960784, 0.960784, 1)" >
2020-01-26 11:07:59 +00:00
White smoke color.
2018-08-20 22:35:30 +00:00
</constant>
2019-09-24 17:45:03 +00:00
<constant name= "YELLOW" value= "Color(1, 1, 0, 1)" >
2020-01-26 11:07:59 +00:00
Yellow color.
2018-08-20 22:35:30 +00:00
</constant>
2022-03-17 18:52:39 +00:00
<constant name= "YELLOW_GREEN" value= "Color(0.603922, 0.803922, 0.196078, 1)" >
2020-01-26 11:07:59 +00:00
Yellow green color.
2018-08-20 22:35:30 +00:00
</constant>
2017-09-12 20:42:36 +00:00
</constants>
2021-09-21 02:49:02 +00:00
<operators >
<operator name= "operator !=" >
<return type= "bool" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "right" type= "Color" />
2021-09-21 02:49:02 +00:00
<description >
2022-11-21 14:22:45 +00:00
Returns [code]true[/code] if the colors are not exactly equal.
2021-11-04 15:58:20 +00:00
[b]Note:[/b] Due to floating-point precision errors, consider using [method is_equal_approx] instead, which is more reliable.
2021-09-21 02:49:02 +00:00
</description>
</operator>
<operator name= "operator *" >
<return type= "Color" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "right" type= "Color" />
2021-09-21 02:49:02 +00:00
<description >
2021-11-04 15:58:20 +00:00
Multiplies each component of the [Color] by the components of the given [Color].
2021-09-21 02:49:02 +00:00
</description>
</operator>
<operator name= "operator *" >
<return type= "Color" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "right" type= "float" />
2021-09-21 02:49:02 +00:00
<description >
2021-11-04 15:58:20 +00:00
Multiplies each component of the [Color] by the given [float].
2021-09-21 02:49:02 +00:00
</description>
</operator>
<operator name= "operator *" >
<return type= "Color" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "right" type= "int" />
2021-09-21 02:49:02 +00:00
<description >
2021-11-04 15:58:20 +00:00
Multiplies each component of the [Color] by the given [int].
2021-09-21 02:49:02 +00:00
</description>
</operator>
<operator name= "operator +" >
<return type= "Color" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "right" type= "Color" />
2021-09-21 02:49:02 +00:00
<description >
2021-11-04 15:58:20 +00:00
Adds each component of the [Color] with the components of the given [Color].
2021-09-21 02:49:02 +00:00
</description>
</operator>
<operator name= "operator -" >
<return type= "Color" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "right" type= "Color" />
2021-09-21 02:49:02 +00:00
<description >
2021-11-04 15:58:20 +00:00
Subtracts each component of the [Color] by the components of the given [Color].
2021-09-21 02:49:02 +00:00
</description>
</operator>
<operator name= "operator /" >
<return type= "Color" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "right" type= "Color" />
2021-09-21 02:49:02 +00:00
<description >
2021-11-04 15:58:20 +00:00
Divides each component of the [Color] by the components of the given [Color].
2021-09-21 02:49:02 +00:00
</description>
</operator>
<operator name= "operator /" >
<return type= "Color" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "right" type= "float" />
2021-09-21 02:49:02 +00:00
<description >
2021-11-04 15:58:20 +00:00
Divides each component of the [Color] by the given [float].
2021-09-21 02:49:02 +00:00
</description>
</operator>
<operator name= "operator /" >
<return type= "Color" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "right" type= "int" />
2021-09-21 02:49:02 +00:00
<description >
2021-11-04 15:58:20 +00:00
Divides each component of the [Color] by the given [int].
2021-09-21 02:49:02 +00:00
</description>
</operator>
<operator name= "operator ==" >
<return type= "bool" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "right" type= "Color" />
2021-09-21 02:49:02 +00:00
<description >
2021-11-04 15:58:20 +00:00
Returns [code]true[/code] if the colors are exactly equal.
[b]Note:[/b] Due to floating-point precision errors, consider using [method is_equal_approx] instead, which is more reliable.
2021-09-21 02:49:02 +00:00
</description>
</operator>
<operator name= "operator []" >
<return type= "float" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "index" type= "int" />
2021-09-21 02:49:02 +00:00
<description >
2022-11-21 14:22:45 +00:00
Access color components using their index. [code][0][/code] is equivalent to [member r], [code][1][/code] is equivalent to [member g], [code][2][/code] is equivalent to [member b], and [code][3][/code] is equivalent to [member a].
2021-09-21 02:49:02 +00:00
</description>
</operator>
<operator name= "operator unary+" >
<return type= "Color" />
<description >
2021-11-04 15:58:20 +00:00
Returns the same value as if the [code]+[/code] was not there. Unary [code]+[/code] does nothing, but sometimes it can make your code more readable.
2021-09-21 02:49:02 +00:00
</description>
</operator>
<operator name= "operator unary-" >
<return type= "Color" />
<description >
2022-11-21 14:22:45 +00:00
Inverts the given color. This is equivalent to [code]Color.WHITE - c[/code] or [code]Color(1 - c.r, 1 - c.g, 1 - c.b, 1 - c.a)[/code]. Unlike with [method inverted], the [member a] component is inverted, too.
2021-09-21 02:49:02 +00:00
</description>
</operator>
</operators>
2017-09-12 20:42:36 +00:00
</class>