diff options
author | kobewi <kobewi4e@gmail.com> | 2023-08-29 14:45:36 +0200 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2023-08-29 14:50:53 +0200 |
commit | 598d9972c832a08714fcb9fdd2f0f98d62a0b07a (patch) | |
tree | f2873d29c8ed1976aa24544dfbc44712136124f7 /scene/animation/tween.cpp | |
parent | 247c3548d810136ffe9c1694cd76db3236efaa90 (diff) | |
download | redot-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.cpp | 8 |
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) { |