2017-09-12 22:42:36 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2021-04-26 13:14:51 +02:00
<class name= "Gradient" inherits= "Resource" version= "3.4" >
2017-09-12 22:42:36 +02:00
<brief_description >
2019-06-22 01:04:47 +02:00
A color interpolator resource which can be used to generate colors between user-defined color points.
2017-09-12 22:42:36 +02:00
</brief_description>
<description >
2019-06-22 01:04:47 +02: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 ramp will interpolate from color 1 to color 2 and from color 2 to color 3. The ramp will initially have 2 colors (black and white), one (black) at ramp lower offset 0 and the other (white) at the ramp higher offset 1.
2017-09-12 22:42:36 +02: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 >
2019-06-22 01:04:47 +02:00
Adds the specified color to the end of the ramp, with the specified offset.
2017-09-12 22:42:36 +02:00
</description>
</method>
2020-08-10 10:23:12 +02:00
<method name= "get_color" >
2017-09-12 22:42:36 +02:00
<return type= "Color" >
</return>
<argument index= "0" name= "point" type= "int" >
</argument>
<description >
2019-06-22 01:04:47 +02:00
Returns the color of the ramp color at index [code]point[/code].
2017-09-12 22:42:36 +02:00
</description>
</method>
2020-08-10 10:23:12 +02:00
<method name= "get_offset" >
2017-09-12 22:42:36 +02:00
<return type= "float" >
</return>
<argument index= "0" name= "point" type= "int" >
</argument>
<description >
2019-06-22 01:04:47 +02:00
Returns the offset of the ramp color at index [code]point[/code].
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "get_point_count" qualifiers= "const" >
<return type= "int" >
</return>
<description >
2019-06-22 01:04:47 +02:00
Returns the number of colors in the ramp.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "interpolate" >
<return type= "Color" >
</return>
<argument index= "0" name= "offset" type= "float" >
</argument>
<description >
2019-06-22 01:04:47 +02:00
Returns the interpolated color specified by [code]offset[/code].
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "remove_point" >
<return type= "void" >
</return>
2020-12-28 17:57:55 +01:00
<argument index= "0" name= "point" type= "int" >
2017-09-12 22:42:36 +02:00
</argument>
<description >
2020-12-28 17:57:55 +01:00
Removes the color at the index [code]point[/code].
2017-09-12 22:42:36 +02: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 >
2019-06-22 01:04:47 +02:00
Sets the color of the ramp color at index [code]point[/code].
2017-09-12 22:42:36 +02: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 >
2019-06-22 01:04:47 +02:00
Sets the offset for the ramp color at index [code]point[/code].
2017-09-12 22:42:36 +02:00
</description>
</method>
</methods>
<members >
2019-06-29 12:38:01 +02:00
<member name= "colors" type= "PoolColorArray" setter= "set_colors" getter= "get_colors" default= "PoolColorArray( 0, 0, 0, 1, 1, 1, 1, 1 )" >
2017-10-09 12:49:12 +02:00
Gradient's colors returned as a [PoolColorArray].
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "offsets" type= "PoolRealArray" setter= "set_offsets" getter= "get_offsets" default= "PoolRealArray( 0, 1 )" >
2017-10-09 12:49:12 +02:00
Gradient's offsets returned as a [PoolRealArray].
2017-09-12 22:42:36 +02:00
</member>
</members>
<constants >
</constants>
</class>