summaryrefslogtreecommitdiffstats
path: root/scene/animation/tween.h
diff options
context:
space:
mode:
authorJames <gotnospirit@gmail.com>2018-08-15 17:26:10 +0200
committerJames <gotnospirit@gmail.com>2018-08-16 15:59:35 +0200
commit4c2f9c19b8ae801bfc1400bbe77e3be844483389 (patch)
treedc846ad0aa9e075ee46c9de7ba029b0bcb93ac2e /scene/animation/tween.h
parent2f20836e522e1e86e6afe966c074a9d2bfa7ea14 (diff)
downloadredot-engine-4c2f9c19b8ae801bfc1400bbe77e3be844483389.tar.gz
Tween: Add a unique identifier to InterpolateData to be able to remove the right one when finished
Diffstat (limited to 'scene/animation/tween.h')
-rw-r--r--scene/animation/tween.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/scene/animation/tween.h b/scene/animation/tween.h
index 9997349c64..aa47c00717 100644
--- a/scene/animation/tween.h
+++ b/scene/animation/tween.h
@@ -100,6 +100,7 @@ private:
real_t delay;
int args;
Variant arg[5];
+ int uid;
};
String autoplay;
@@ -107,6 +108,7 @@ private:
bool repeat;
float speed_scale;
mutable int pending_update;
+ int uid;
List<InterpolateData> interpolates;
@@ -131,7 +133,8 @@ private:
bool _apply_tween_value(InterpolateData &p_data, Variant &value);
void _tween_process(float p_delta);
- void _remove(Object *p_object, StringName p_key, bool first_only);
+ void _remove_by_uid(int uid);
+ void _push_interpolate_data(InterpolateData &p_data);
protected:
bool _set(const StringName &p_name, const Variant &p_value);