summaryrefslogtreecommitdiffstats
path: root/scene/animation/tween.cpp
diff options
context:
space:
mode:
authorkobewi <kobewi4e@gmail.com>2023-08-29 14:45:36 +0200
committerkobewi <kobewi4e@gmail.com>2023-08-29 14:50:53 +0200
commit598d9972c832a08714fcb9fdd2f0f98d62a0b07a (patch)
treef2873d29c8ed1976aa24544dfbc44712136124f7 /scene/animation/tween.cpp
parent247c3548d810136ffe9c1694cd76db3236efaa90 (diff)
downloadredot-engine-598d9972c832a08714fcb9fdd2f0f98d62a0b07a.tar.gz
Prevent errors if Tween callback's object is freed
Diffstat (limited to 'scene/animation/tween.cpp')
-rw-r--r--scene/animation/tween.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/scene/animation/tween.cpp b/scene/animation/tween.cpp
index bf01898402..1b8c410101 100644
--- a/scene/animation/tween.cpp
+++ b/scene/animation/tween.cpp
@@ -675,6 +675,10 @@ bool CallbackTweener::step(double &r_delta) {
return false;
}
+ if (!callback.get_object()) {
+ return false;
+ }
+
elapsed_time += r_delta;
if (elapsed_time >= delay) {
Variant result;
@@ -736,6 +740,10 @@ bool MethodTweener::step(double &r_delta) {
return false;
}
+ if (!callback.get_object()) {
+ return false;
+ }
+
elapsed_time += r_delta;
if (elapsed_time < delay) {