diff options
author | kobewi <kobewi4e@gmail.com> | 2023-01-11 14:08:14 +0100 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2023-01-11 14:08:14 +0100 |
commit | f64dd732b8ac249d052519940e46129960e0d771 (patch) | |
tree | af2faabeae41aa9e93260f604442dac996c09f73 /scene/animation/tween.h | |
parent | da9396881e330e0ec9ede23f9f697da591a1b3c4 (diff) | |
download | redot-engine-f64dd732b8ac249d052519940e46129960e0d771.tar.gz |
Improve some Tween internals
Diffstat (limited to 'scene/animation/tween.h')
-rw-r--r-- | scene/animation/tween.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scene/animation/tween.h b/scene/animation/tween.h index 8f65416e71..08911d6623 100644 --- a/scene/animation/tween.h +++ b/scene/animation/tween.h @@ -123,7 +123,8 @@ private: typedef real_t (*interpolater)(real_t t, real_t b, real_t c, real_t d); static interpolater interpolaters[TRANS_MAX][EASE_MAX]; - void start_tweeners(); + void _start_tweeners(); + void _stop_internal(bool p_reset); protected: static void _bind_methods(); |