diff options
author | kobewi <kobewi4e@gmail.com> | 2022-01-09 18:23:53 +0100 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2022-01-09 19:38:18 +0100 |
commit | 205f56f22637c53674c9df5db464780b6e8eea84 (patch) | |
tree | 91e5eef89b404f13c9ba8c9581eece05af092f9d /scene/animation/tween.h | |
parent | 5a61822d7ccab39b00ddd5c9bcc01fb04112b976 (diff) | |
download | redot-engine-205f56f22637c53674c9df5db464780b6e8eea84.tar.gz |
Fix Tween pause behavior
Diffstat (limited to 'scene/animation/tween.h')
-rw-r--r-- | scene/animation/tween.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/scene/animation/tween.h b/scene/animation/tween.h index 7ecdb64f0d..5b0745b2b3 100644 --- a/scene/animation/tween.h +++ b/scene/animation/tween.h @@ -97,7 +97,7 @@ public: private: TweenProcessMode process_mode = TweenProcessMode::TWEEN_PROCESS_IDLE; - TweenPauseMode pause_mode = TweenPauseMode::TWEEN_PAUSE_STOP; + TweenPauseMode pause_mode = TweenPauseMode::TWEEN_PAUSE_BOUND; TransitionType default_transition = TransitionType::TRANS_LINEAR; EaseType default_ease = EaseType::EASE_IN_OUT; ObjectID bound_node; @@ -164,7 +164,8 @@ public: Variant calculate_delta_value(Variant p_intial_val, Variant p_final_val); bool step(float p_delta); - bool should_pause(); + bool can_process(bool p_tree_paused) const; + Node *get_bound_node() const; Tween() {} }; |