diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2022-04-02 00:31:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-02 00:31:40 +0200 |
commit | 6bbd4def4597beb240cbe75bf8e585990fcf33f3 (patch) | |
tree | 450eb8cffad43253d316f3ff7202e80c830dbcad /scene/animation/tween.h | |
parent | 9c5818d21219cebb38350a477a4a6c09b1197785 (diff) | |
parent | e04ae8c8bcabfd5f9e66544090f9921bfc15e0ad (diff) | |
download | redot-engine-6bbd4def4597beb240cbe75bf8e585990fcf33f3.tar.gz |
Merge pull request #59415 from KoBeWi/tween_time()
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 62c357dfb4..e28a499259 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() {} }; |