diff options
author | kobewi <kobewi4e@gmail.com> | 2022-03-22 17:39:01 +0100 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2022-03-29 13:34:05 +0200 |
commit | e04ae8c8bcabfd5f9e66544090f9921bfc15e0ad (patch) | |
tree | 331b98c1ae24446edf7be68aa1ca1d79b0d54b84 /scene/animation/tween.h | |
parent | a30d17fe23cab95716e4b1bff9dfac21b70b5481 (diff) | |
download | redot-engine-e04ae8c8bcabfd5f9e66544090f9921bfc15e0ad.tar.gz |
Add get_total_elapsed_time() to Tween
Diffstat (limited to 'scene/animation/tween.h')
-rw-r--r-- | scene/animation/tween.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scene/animation/tween.h b/scene/animation/tween.h index 5b0745b2b3..648a4ca409 100644 --- a/scene/animation/tween.h +++ b/scene/animation/tween.h @@ -103,6 +103,7 @@ private: ObjectID bound_node; Vector<List<Ref<Tweener>>> tweeners; + float total_time = 0; int current_step = -1; int loops = 1; int loops_done = 0; @@ -166,6 +167,7 @@ public: bool step(float p_delta); bool can_process(bool p_tree_paused) const; Node *get_bound_node() const; + float get_total_time() const; Tween() {} }; |