diff options
author | A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> | 2024-02-26 10:29:37 +0100 |
---|---|---|
committer | A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> | 2024-02-26 18:58:03 +0100 |
commit | 92814bafb7dfb4d211581e1b4e08f1d205e40352 (patch) | |
tree | 1544ede45a790f78b352b5219711e831457269d2 /scene/animation/tween.h | |
parent | 81f3d43cc1ba01136795fb2059bbaa55bc514a16 (diff) | |
download | redot-engine-92814bafb7dfb4d211581e1b4e08f1d205e40352.tar.gz |
[Animation] Improvements to `Tween` memory management
Using `ObjectID` instead of manually breaking reference cycles.
Diffstat (limited to 'scene/animation/tween.h')
-rw-r--r-- | scene/animation/tween.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/scene/animation/tween.h b/scene/animation/tween.h index 8dcc3ad7b6..f5ae5e9776 100644 --- a/scene/animation/tween.h +++ b/scene/animation/tween.h @@ -39,16 +39,18 @@ class Node; class Tweener : public RefCounted { GDCLASS(Tweener, RefCounted); + ObjectID tween_id; + public: virtual void set_tween(const Ref<Tween> &p_tween); virtual void start() = 0; virtual bool step(double &r_delta) = 0; - void clear_tween(); protected: static void _bind_methods(); - Ref<Tween> tween; + Ref<Tween> _get_tween(); + double elapsed_time = 0; bool finished = false; }; @@ -291,7 +293,6 @@ private: Tween::TransitionType trans_type = Tween::TRANS_MAX; Tween::EaseType ease_type = Tween::EASE_MAX; - Ref<Tween> tween; Variant initial_val; Variant delta_val; Variant final_val; |