From 84f4178850c2c39719ece200a93e307641c08051 Mon Sep 17 00:00:00 2001 From: Bruno Brant <1890900+bruno-brant@users.noreply.github.com> Date: Sat, 23 Nov 2024 23:02:14 -0300 Subject: [PATCH] Fix missing sign in ease function curve description The range was broken because -1.0 was informed as being 1.0. --- doc/classes/@GlobalScope.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/classes/@GlobalScope.xml b/doc/classes/@GlobalScope.xml index 06aec6a2f7b..12134b1f275 100644 --- a/doc/classes/@GlobalScope.xml +++ b/doc/classes/@GlobalScope.xml @@ -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: [codeblock lang=text] - Lower than -1.0 (exclusive): Ease in-out - - 1.0: Linear + - -1.0: Linear - Between -1.0 and 0.0 (exclusive): Ease out-in - 0.0: Constant - Between 0.0 to 1.0 (exclusive): Ease out