diff options
author | Noshyaar <poommetee@protonmail.com> | 2018-05-11 18:57:11 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-11 18:57:11 +0700 |
commit | 41e9e5501b7000146f6719faa52c0684257698a6 (patch) | |
tree | 895c1242317b5349a3ba79a988d97e4dedc648ec /doc/classes/Color.xml | |
parent | 0f9fc47234e0d4f8a3e232de0efe4696dec06c32 (diff) |
Fix docs regarding Color.from_hsv hue range [0,360] -> [0,1]
Per changes in #17407
Diffstat (limited to 'doc/classes/Color.xml')
-rw-r--r-- | doc/classes/Color.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/classes/Color.xml b/doc/classes/Color.xml index 2617aaef17..104c9e0a98 100644 --- a/doc/classes/Color.xml +++ b/doc/classes/Color.xml @@ -129,9 +129,9 @@ <argument index="3" name="a" type="float" default="1"> </argument> <description> - Constructs a color from an HSV profile. [code]h[/code] is a value between 0 and 360. [code]s[/code] and [code]v[/code] are values between 0 and 1. + Constructs a color from an HSV profile. [code]h[/code], [code]s[/code], and [code]v[/code] are values between 0 and 1. [codeblock] - var c = Color.from_hsv(210, 0.5, 0.79, 0.8) # equivalent to HSV(210, 50, 79, 0.8) or Color8(100, 151, 201, 0.8) + var c = Color.from_hsv(0.58, 0.5, 0.79, 0.8) # equivalent to HSV(210, 50, 79, 0.8) or Color8(100, 151, 201, 0.8) [/codeblock] </description> </method> |