diff options
author | kobewi <kobewi4e@gmail.com> | 2023-01-01 11:27:53 +0100 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2023-01-01 18:45:17 +0100 |
commit | a6e02f149f14ce18864af7a62d81e816710f8a4a (patch) | |
tree | 332a172aa7030eda8353a3477899b648d2d8e3ee /scene/animation/tween.h | |
parent | 8a98110e3e353a9a3b86b4a0bd56adf405bd6d93 (diff) | |
download | redot-engine-a6e02f149f14ce18864af7a62d81e816710f8a4a.tar.gz |
Improve RefCounted support in Tween
Diffstat (limited to 'scene/animation/tween.h')
-rw-r--r-- | scene/animation/tween.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/scene/animation/tween.h b/scene/animation/tween.h index 345974ecc5..4b69dc337c 100644 --- a/scene/animation/tween.h +++ b/scene/animation/tween.h @@ -208,6 +208,8 @@ private: Variant final_val; Variant delta_val; + Ref<RefCounted> ref_copy; // Makes sure that RefCounted objects are not freed too early. + double duration = 0; Tween::TransitionType trans_type = Tween::TRANS_MAX; // This is set inside set_tween(); Tween::EaseType ease_type = Tween::EASE_MAX; @@ -249,6 +251,8 @@ protected: private: Callable callback; double delay = 0; + + Ref<RefCounted> ref_copy; }; class MethodTweener : public Tweener { @@ -280,6 +284,8 @@ private: Variant delta_val; Variant final_val; Callable callback; + + Ref<RefCounted> ref_copy; }; #endif // TWEEN_H |