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= "Gradient" inherits= "Resource" version= "4.0" >
2017-09-12 20:42:36 +00:00
<brief_description >
2019-06-21 23:04:47 +00:00
A color interpolator resource which can be used to generate colors between user-defined color points.
2017-09-12 20:42:36 +00:00
</brief_description>
<description >
2020-10-25 16:32:44 +00:00
Given a set of colors, this resource will interpolate them in order. This means that if you have color 1, color 2 and color 3, the gradient will interpolate from color 1 to color 2 and from color 2 to color 3. The gradient will initially have 2 colors (black and white), one (black) at gradient lower offset 0 and the other (white) at the gradient higher offset 1.
2017-09-12 20:42:36 +00:00
</description>
<tutorials >
</tutorials>
<methods >
<method name= "add_point" >
<return type= "void" >
</return>
<argument index= "0" name= "offset" type= "float" >
</argument>
<argument index= "1" name= "color" type= "Color" >
</argument>
<description >
2020-10-25 16:32:44 +00:00
Adds the specified color to the end of the gradient, with the specified offset.
2017-09-12 20:42:36 +00:00
</description>
</method>
2020-08-13 07:35:41 +00:00
<method name= "get_color" >
2017-09-12 20:42:36 +00:00
<return type= "Color" >
</return>
<argument index= "0" name= "point" type= "int" >
</argument>
<description >
2020-10-25 16:32:44 +00:00
Returns the color of the gradient color at index [code]point[/code].
2017-09-12 20:42:36 +00:00
</description>
</method>
2020-08-13 07:35:41 +00:00
<method name= "get_offset" >
2017-09-12 20:42:36 +00:00
<return type= "float" >
</return>
<argument index= "0" name= "point" type= "int" >
</argument>
<description >
2020-10-25 16:32:44 +00:00
Returns the offset of the gradient color at index [code]point[/code].
2017-09-12 20:42:36 +00:00
</description>
</method>
<method name= "get_point_count" qualifiers= "const" >
<return type= "int" >
</return>
<description >
2020-10-25 16:32:44 +00:00
Returns the number of colors in the gradient.
2017-09-12 20:42:36 +00:00
</description>
</method>
<method name= "interpolate" >
<return type= "Color" >
</return>
<argument index= "0" name= "offset" type= "float" >
</argument>
<description >
2019-06-21 23:04:47 +00:00
Returns the interpolated color specified by [code]offset[/code].
2017-09-12 20:42:36 +00:00
</description>
</method>
<method name= "remove_point" >
<return type= "void" >
</return>
2020-12-28 16:57:55 +00:00
<argument index= "0" name= "point" type= "int" >
2017-09-12 20:42:36 +00:00
</argument>
<description >
2020-12-28 16:57:55 +00:00
Removes the color at the index [code]point[/code].
2017-09-12 20:42:36 +00:00
</description>
</method>
<method name= "set_color" >
<return type= "void" >
</return>
<argument index= "0" name= "point" type= "int" >
</argument>
<argument index= "1" name= "color" type= "Color" >
</argument>
<description >
2020-10-25 16:32:44 +00:00
Sets the color of the gradient color at index [code]point[/code].
2017-09-12 20:42:36 +00:00
</description>
</method>
<method name= "set_offset" >
<return type= "void" >
</return>
<argument index= "0" name= "point" type= "int" >
</argument>
<argument index= "1" name= "offset" type= "float" >
</argument>
<description >
2020-10-25 16:32:44 +00:00
Sets the offset for the gradient color at index [code]point[/code].
2017-09-12 20:42:36 +00:00
</description>
</method>
</methods>
<members >
2019-09-24 17:45:03 +00:00
<member name= "colors" type= "PackedColorArray" setter= "set_colors" getter= "get_colors" default= "PackedColorArray(0, 0, 0, 1, 1, 1, 1, 1)" >
2020-02-18 12:59:24 +00:00
Gradient's colors returned as a [PackedColorArray].
2017-09-12 20:42:36 +00:00
</member>
2019-09-24 17:45:03 +00:00
<member name= "offsets" type= "PackedFloat32Array" setter= "set_offsets" getter= "get_offsets" default= "PackedFloat32Array(0, 1)" >
2020-02-25 17:10:58 +00:00
Gradient's offsets returned as a [PackedFloat32Array].
2017-09-12 20:42:36 +00:00
</member>
</members>
<constants >
</constants>
</class>