summaryrefslogtreecommitdiff
path: root/scene/animation
diff options
context:
space:
mode:
authorkobewi <kobewi4e@gmail.com>2022-09-16 14:20:12 +0200
committerkobewi <kobewi4e@gmail.com>2022-09-16 14:20:12 +0200
commit1a462bc84e095125661efb5a0254f36e73197cd9 (patch)
treee328e49c8fed680fa8af744bd8c236b8622b9f7e /scene/animation
parent55bed82b0541c5dbefcf402cc0974fe5d05e7576 (diff)
Fix crash when playing Tween right after finishing
Diffstat (limited to 'scene/animation')
-rw-r--r--scene/animation/tween.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/scene/animation/tween.cpp b/scene/animation/tween.cpp
index beadfbaeef..b02f1959b7 100644
--- a/scene/animation/tween.cpp
+++ b/scene/animation/tween.cpp
@@ -315,6 +315,7 @@ bool Tween::step(float p_delta) {
running = false;
dead = true;
emit_signal(SNAME("finished"));
+ break;
} else {
emit_signal(SNAME("loop_finished"), loops_done);
current_step = 0;