diff options
author | Rakka Rage <rakkarage@gmail.com> | 2023-05-10 01:03:36 -0400 |
---|---|---|
committer | Rakka Rage <rakkarage@gmail.com> | 2023-05-17 17:54:37 -0400 |
commit | 780e21bcacd66de9bde038ae9cd31d80f700f16a (patch) | |
tree | 466a10303f0a279888e7b78a9ef2df31d770feed /scene/animation/tween.cpp | |
parent | da21cb7042b09de24964b9bd5a1a8e1d93ab4b8b (diff) | |
download | redot-engine-780e21bcacd66de9bde038ae9cd31d80f700f16a.tar.gz |
Add TRANS_SPRING to Tween
Diffstat (limited to 'scene/animation/tween.cpp')
-rw-r--r-- | scene/animation/tween.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scene/animation/tween.cpp b/scene/animation/tween.cpp index 8266cfbd43..96e5da5a40 100644 --- a/scene/animation/tween.cpp +++ b/scene/animation/tween.cpp @@ -50,6 +50,7 @@ Tween::interpolater Tween::interpolaters[Tween::TRANS_MAX][Tween::EASE_MAX] = { { &circ::in, &circ::out, &circ::in_out, &circ::out_in }, { &bounce::in, &bounce::out, &bounce::in_out, &bounce::out_in }, { &back::in, &back::out, &back::in_out, &back::out_in }, + { &spring::in, &spring::out, &spring::in_out, &spring::out_in }, }; void Tweener::set_tween(const Ref<Tween> &p_tween) { @@ -483,6 +484,7 @@ void Tween::_bind_methods() { BIND_ENUM_CONSTANT(TRANS_CIRC); BIND_ENUM_CONSTANT(TRANS_BOUNCE); BIND_ENUM_CONSTANT(TRANS_BACK); + BIND_ENUM_CONSTANT(TRANS_SPRING); BIND_ENUM_CONSTANT(EASE_IN); BIND_ENUM_CONSTANT(EASE_OUT); |