summaryrefslogtreecommitdiffstats
path: root/scene/animation/tween.h
diff options
context:
space:
mode:
authorkobewi <kobewi4e@gmail.com>2023-12-02 20:20:50 +0100
committerkobewi <kobewi4e@gmail.com>2023-12-02 20:20:50 +0100
commit20aecefd9bdde8c806645432e3989f11ddc6e90d (patch)
tree84a5d0c640771549f3e5a3eb79bd2d82f51dd11b /scene/animation/tween.h
parentd76c1d0e516fedc535a2e394ab780cac79203477 (diff)
downloadredot-engine-20aecefd9bdde8c806645432e3989f11ddc6e90d.tar.gz
Fix Tween loop initial value
Diffstat (limited to 'scene/animation/tween.h')
-rw-r--r--scene/animation/tween.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/scene/animation/tween.h b/scene/animation/tween.h
index 10c7a272ef..053b4fac46 100644
--- a/scene/animation/tween.h
+++ b/scene/animation/tween.h
@@ -225,6 +225,7 @@ private:
double delay = 0;
bool do_continue = true;
+ bool do_continue_delayed = false;
bool relative = false;
};