diff options
author | BlackShift <blackshifty@gmail.com> | 2024-08-28 07:29:51 -0400 |
---|---|---|
committer | BlackShift <blackshifty@gmail.com> | 2024-08-29 14:53:45 -0400 |
commit | 1abd67caace2c51fbf5577ec817f44d4ccc677c7 (patch) | |
tree | b6ace2b9cc39c39da72cf76cad132c76ba4f6384 /scene/animation | |
parent | 108c603f91b94100a1adc989316a372f0a6f8989 (diff) | |
download | redot-engine-1abd67caace2c51fbf5577ec817f44d4ccc677c7.tar.gz |
Fix Tweeners to emit finished() when underlying object is deleted
Diffstat (limited to 'scene/animation')
-rw-r--r-- | scene/animation/tween.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scene/animation/tween.cpp b/scene/animation/tween.cpp index f8bbd704f4..e1fd8abede 100644 --- a/scene/animation/tween.cpp +++ b/scene/animation/tween.cpp @@ -579,6 +579,7 @@ bool PropertyTweener::step(double &r_delta) { Object *target_instance = ObjectDB::get_instance(target); if (!target_instance) { + _finish(); return false; } elapsed_time += r_delta; @@ -706,6 +707,7 @@ bool CallbackTweener::step(double &r_delta) { } if (!callback.is_valid()) { + _finish(); return false; } @@ -770,6 +772,7 @@ bool MethodTweener::step(double &r_delta) { } if (!callback.is_valid()) { + _finish(); return false; } |