mirror of https://github.com/godotengine/godot
Merge pull request #99611 from bruno-brant/patch-1
Fix missing sign in ease function curve description
This commit is contained in:
commit
e4ee8a3b32
|
|
@ -370,7 +370,7 @@
|
||||||
Returns an "eased" value of [param x] based on an easing function defined with [param curve]. This easing function is based on an exponent. The [param curve] can be any floating-point number, with specific values leading to the following behaviors:
|
Returns an "eased" value of [param x] based on an easing function defined with [param curve]. This easing function is based on an exponent. The [param curve] can be any floating-point number, with specific values leading to the following behaviors:
|
||||||
[codeblock lang=text]
|
[codeblock lang=text]
|
||||||
- Lower than -1.0 (exclusive): Ease in-out
|
- Lower than -1.0 (exclusive): Ease in-out
|
||||||
- 1.0: Linear
|
- -1.0: Linear
|
||||||
- Between -1.0 and 0.0 (exclusive): Ease out-in
|
- Between -1.0 and 0.0 (exclusive): Ease out-in
|
||||||
- 0.0: Constant
|
- 0.0: Constant
|
||||||
- Between 0.0 to 1.0 (exclusive): Ease out
|
- Between 0.0 to 1.0 (exclusive): Ease out
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue