diff options
author | Matthew <matthewehr@hotmail.com> | 2023-03-19 21:43:49 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-19 21:43:49 -0400 |
commit | 161d028ae89acb578cfcd4f29bfe9ac205459e8b (patch) | |
tree | 5dd56a7eb6c194cb351f2617caee6d987fb12c81 | |
parent | 4d5f10fc3ad4e72c22391663c37d1f46510bb291 (diff) | |
parent | 8901986d56189416c00f0c718c2f16600be34597 (diff) | |
download | redot-engine-161d028ae89acb578cfcd4f29bfe9ac205459e8b.tar.gz |
Merge pull request #75076 from MisoMosiSpy/doc_GlobalScope
Fix typo in the type-safe examples
-rw-r--r-- | doc/classes/@GlobalScope.xml | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/doc/classes/@GlobalScope.xml b/doc/classes/@GlobalScope.xml index cdaf9bd1be..81c0323142 100644 --- a/doc/classes/@GlobalScope.xml +++ b/doc/classes/@GlobalScope.xml @@ -622,7 +622,7 @@ <description> Linearly interpolates between two values by the factor defined in [param weight]. To perform interpolation, [param weight] should be between [code]0.0[/code] and [code]1.0[/code] (inclusive). However, values outside this range are allowed and can be used to perform [i]extrapolation[/i]. If this is not desired, use [method clampf] on the result of this function. [codeblock] - lerp(0, 4, 0.75) # Returns 3.0 + lerpf(0, 4, 0.75) # Returns 3.0 [/codeblock] See also [method inverse_lerp] which performs the reverse of this operation. To perform eased interpolation with [method lerp], combine it with [method ease] or [method smoothstep]. </description> @@ -1142,9 +1142,9 @@ <description> Returns [code]-1.0[/code] if [param x] is negative, [code]1.0[/code] if [param x] is positive, and [code]0.0[/code] if [param x] is zero. [codeblock] - sign(-6.5) # Returns -1.0 - sign(0.0) # Returns 0.0 - sign(6.5) # Returns 1.0 + signf(-6.5) # Returns -1.0 + signf(0.0) # Returns 0.0 + signf(6.5) # Returns 1.0 [/codeblock] </description> </method> @@ -1154,9 +1154,9 @@ <description> Returns [code]-1[/code] if [param x] is negative, [code]1[/code] if [param x] is positive, and [code]0[/code] if if [param x] is zero. [codeblock] - sign(-6) # Returns -1 - sign(0) # Returns 0 - sign(6) # Returns 1 + signi(-6) # Returns -1 + signi(0) # Returns 0 + signi(6) # Returns 1 [/codeblock] </description> </method> @@ -1226,8 +1226,8 @@ Returns the multiple of [param step] that is the closest to [param x]. This can also be used to round a floating point number to an arbitrary number of decimals. A type-safe version of [method snapped], returning a [float]. [codeblock] - snapped(32.0, 2.5) # Returns 32.5 - snapped(3.14159, 0.01) # Returns 3.14 + snappedf(32.0, 2.5) # Returns 32.5 + snappedf(3.14159, 0.01) # Returns 3.14 [/codeblock] </description> </method> @@ -1239,8 +1239,8 @@ Returns the multiple of [param step] that is the closest to [param x]. A type-safe version of [method snapped], returning an [int]. [codeblock] - snapped(53, 16) # Returns 48 - snapped(4096, 100) # Returns 4100 + snappedi(53, 16) # Returns 48 + snappedi(4096, 100) # Returns 4100 [/codeblock] </description> </method> |