diff options
author | kobewi <kobewi4e@gmail.com> | 2023-07-25 13:29:30 +0200 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2023-07-25 13:29:30 +0200 |
commit | dbecf8bd1ab800d1349c6519c9199692a4a486a7 (patch) | |
tree | e8967244ab735943d62ec62596a1cf0e12f57afc /scene/animation/tween.cpp | |
parent | f6187014ec1d7a47b7201f64f3a8376a5da2f42d (diff) | |
download | redot-engine-dbecf8bd1ab800d1349c6519c9199692a4a486a7.tar.gz |
Improve and clarify paused Tweens
Diffstat (limited to 'scene/animation/tween.cpp')
-rw-r--r-- | scene/animation/tween.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scene/animation/tween.cpp b/scene/animation/tween.cpp index 96e5da5a40..b32b04655d 100644 --- a/scene/animation/tween.cpp +++ b/scene/animation/tween.cpp @@ -284,10 +284,6 @@ bool Tween::step(double p_delta) { return false; } - if (!running) { - return true; - } - if (is_bound) { Node *node = get_bound_node(); if (node) { @@ -299,6 +295,10 @@ bool Tween::step(double p_delta) { } } + if (!running) { + return true; + } + if (!started) { if (tweeners.is_empty()) { String tween_id; |