From cc5dac1e507e3f112fc68cf3759bb1ee9cbc6fe4 Mon Sep 17 00:00:00 2001 From: kobewi Date: Sun, 9 Jan 2022 18:39:54 +0100 Subject: [PATCH] Restore Tween easing descriptions --- doc/classes/Tween.xml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/doc/classes/Tween.xml b/doc/classes/Tween.xml index 05c83f04231..361b698fa25 100644 --- a/doc/classes/Tween.xml +++ b/doc/classes/Tween.xml @@ -315,34 +315,49 @@ + The animation is interpolated linearly. + The animation is interpolated using a sine function. + The animation is interpolated with a quintic (to the power of 5) function. + The animation is interpolated with a quartic (to the power of 4) function. + The animation is interpolated with a quadratic (to the power of 2) function. + The animation is interpolated with an exponential (to the power of x) function. + The animation is interpolated with elasticity, wiggling around the edges. + The animation is interpolated with a cubic (to the power of 3) function. + The animation is interpolated with a function using square roots. + The animation is interpolated by bouncing at the end. + The animation is interpolated backing out at ends. + The interpolation starts slowly and speeds up towards the end. + The interpolation starts quickly and slows down towards the end. + A combination of [constant EASE_IN] and [constant EASE_OUT]. The interpolation is slowest at both ends. + A combination of [constant EASE_IN] and [constant EASE_OUT]. The interpolation is fastest at both ends.