diff options
author | Jérôme GULLY <jerome.gully0@gmail.com> | 2017-10-09 12:49:12 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2017-10-09 12:49:12 +0200 |
commit | 9e93f5b478c8ee15dcec54df90e74dca09245a94 (patch) | |
tree | d43807c0087df34ef5ba96cd48100a794c363ec9 /doc/classes/Gradient.xml | |
parent | cb4830ef5ef6afc8cb0fd590263a43b9980db530 (diff) | |
download | redot-engine-9e93f5b478c8ee15dcec54df90e74dca09245a94.tar.gz |
[DOCS] Review and improve 17 classes (#11890)
Diffstat (limited to 'doc/classes/Gradient.xml')
-rw-r--r-- | doc/classes/Gradient.xml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/classes/Gradient.xml b/doc/classes/Gradient.xml index f97908b0a2..e086ae86b1 100644 --- a/doc/classes/Gradient.xml +++ b/doc/classes/Gradient.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8" ?> <class name="Gradient" inherits="Resource" category="Core" version="3.0.alpha.custom_build"> <brief_description> - Color interpolator node + Color interpolator node. </brief_description> <description> Given a set of colors, this node will interpolate them in order, meaning, that if you have color 1, color 2 and color3, the ramp will interpolate (generate the colors between two colors) from color 1 to color 2 and from color 2 to color 3. Initially the ramp will have 2 colors (black and white), one (black) at ramp lower offset offset 0 and the other (white) at the ramp higher offset 1. @@ -122,8 +122,10 @@ </methods> <members> <member name="colors" type="PoolColorArray" setter="set_colors" getter="get_colors"> + Gradient's colors returned as a [PoolColorArray]. </member> <member name="offsets" type="PoolRealArray" setter="set_offsets" getter="get_offsets"> + Gradient's offsets returned as a [PoolRealArray]. </member> </members> <constants> |