diff options
author | kobewi <kobewi4e@gmail.com> | 2024-07-28 17:30:02 +0200 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2024-07-28 17:30:02 +0200 |
commit | 7cc0df6b46421b0918b766dbff20d105c39c8fc9 (patch) | |
tree | 5358121d7007577eef5fd3cd46fc5cd76e34b6c8 /doc/classes | |
parent | 607b230ffe120b2757c56bd3d52a7a0d4e502cfe (diff) | |
download | redot-engine-7cc0df6b46421b0918b766dbff20d105c39c8fc9.tar.gz |
Document alternatives to some static Color methods
Diffstat (limited to 'doc/classes')
-rw-r--r-- | doc/classes/Color.xml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/classes/Color.xml b/doc/classes/Color.xml index 3f0ccc0b5e..9fe42fff90 100644 --- a/doc/classes/Color.xml +++ b/doc/classes/Color.xml @@ -190,6 +190,7 @@ <param index="1" name="default" type="Color" /> <description> 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. + If you want to create a color from String in a constant expression, use the equivalent constructor instead (i.e. [code]Color("color string")[/code]). </description> </method> <method name="get_luminance" qualifiers="const"> @@ -217,6 +218,7 @@ var my_color = new Color(0xbbefd2a4); [/csharp] [/codeblocks] + If you want to use hex notation in a constant expression, use the equivalent constructor instead (i.e. [code]Color(0xRRGGBBAA)[/code]). </description> </method> <method name="hex64" qualifiers="static"> |