mirror of
https://github.com/godotengine/godot.git
synced 2024-11-22 12:12:28 +00:00
Remove internal functions of named colors from the public API
This commit is contained in:
parent
72b845b287
commit
653e8f5c86
@ -1835,10 +1835,6 @@ static void _register_variant_builtin_methods() {
|
||||
bind_static_method(Color, hex64, sarray("hex"), varray());
|
||||
bind_static_method(Color, html, sarray("rgba"), varray());
|
||||
bind_static_method(Color, html_is_valid, sarray("color"), varray());
|
||||
bind_static_method(Color, find_named_color, sarray("name"), varray());
|
||||
bind_static_method(Color, get_named_color_count, sarray(), varray());
|
||||
bind_static_method(Color, get_named_color_name, sarray("idx"), varray());
|
||||
bind_static_method(Color, get_named_color, sarray("idx"), varray());
|
||||
bind_static_method(Color, from_string, sarray("str", "default"), varray());
|
||||
bind_static_method(Color, from_hsv, sarray("h", "s", "v", "alpha"), varray(1.0));
|
||||
bind_static_method(Color, from_ok_hsl, sarray("h", "s", "l", "alpha"), varray(1.0));
|
||||
|
@ -141,17 +141,6 @@
|
||||
[/codeblocks]
|
||||
</description>
|
||||
</method>
|
||||
<method name="find_named_color" qualifiers="static">
|
||||
<return type="int" />
|
||||
<param index="0" name="name" type="String" />
|
||||
<description>
|
||||
Returns the index of a named color. Use [method get_named_color] to get the actual color.
|
||||
[codeblock]
|
||||
var idx = Color.find_named_color("khaki")
|
||||
modulate = Color.get_named_color(idx)
|
||||
[/codeblock]
|
||||
</description>
|
||||
</method>
|
||||
<method name="from_hsv" qualifiers="static">
|
||||
<return type="Color" />
|
||||
<param index="0" name="h" type="float" />
|
||||
@ -211,26 +200,6 @@
|
||||
[b]Note:[/b] [method get_luminance] relies on the colour 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.
|
||||
</description>
|
||||
</method>
|
||||
<method name="get_named_color" qualifiers="static">
|
||||
<return type="Color" />
|
||||
<param index="0" name="idx" type="int" />
|
||||
<description>
|
||||
Returns a named color with the given index. You can get the index from [method find_named_color] or iteratively from [method get_named_color_count].
|
||||
</description>
|
||||
</method>
|
||||
<method name="get_named_color_count" qualifiers="static">
|
||||
<return type="int" />
|
||||
<description>
|
||||
Returns the number of available named colors.
|
||||
</description>
|
||||
</method>
|
||||
<method name="get_named_color_name" qualifiers="static">
|
||||
<return type="String" />
|
||||
<param index="0" name="idx" type="int" />
|
||||
<description>
|
||||
Returns the name of a color with the given index. You can get the index from [method find_named_color] or iteratively from [method get_named_color_count].
|
||||
</description>
|
||||
</method>
|
||||
<method name="hex" qualifiers="static">
|
||||
<return type="Color" />
|
||||
<param index="0" name="hex" type="int" />
|
||||
|
Loading…
Reference in New Issue
Block a user