diff options
author | kobewi <kobewi4e@gmail.com> | 2024-08-15 08:41:51 +0200 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2024-08-15 08:41:51 +0200 |
commit | 761d988d4735a2d0d1c30ddfad37693aedbf5f94 (patch) | |
tree | 0c28422c9188d4d2f456aad12b8091dfbfde8be4 /scene/animation/tween.h | |
parent | 33c30b9e63a58b860cb2f36957c5e25cee34a627 (diff) | |
download | redot-engine-761d988d4735a2d0d1c30ddfad37693aedbf5f94.tar.gz |
Add internal _finish() method to Tweener
Diffstat (limited to 'scene/animation/tween.h')
-rw-r--r-- | scene/animation/tween.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scene/animation/tween.h b/scene/animation/tween.h index f5ae5e9776..40e1da0ad3 100644 --- a/scene/animation/tween.h +++ b/scene/animation/tween.h @@ -50,6 +50,7 @@ protected: static void _bind_methods(); Ref<Tween> _get_tween(); + void _finish(); double elapsed_time = 0; bool finished = false; |