diff options
author | Silc Lizard (Tokage) Renew <61938263+TokageItLab@users.noreply.github.com> | 2024-07-15 08:44:20 +0900 |
---|---|---|
committer | Silc Lizard (Tokage) Renew <61938263+TokageItLab@users.noreply.github.com> | 2024-11-12 04:40:15 +0900 |
commit | 0c1f970adb78cb0653a3789ee61df4ab14b94b96 (patch) | |
tree | 4ae61e9b695060944f7098b02e8b2046dbbbd4e2 /scene/animation/animation_blend_tree.h | |
parent | e65a23762b36b564eb94672031f37fdadba72333 (diff) | |
download | redot-engine-0c1f970adb78cb0653a3789ee61df4ab14b94b96.tar.gz |
Add advance_on_start option to NodeAnimation
Diffstat (limited to 'scene/animation/animation_blend_tree.h')
-rw-r--r-- | scene/animation/animation_blend_tree.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/scene/animation/animation_blend_tree.h b/scene/animation/animation_blend_tree.h index 2add35d009..5c912f0095 100644 --- a/scene/animation/animation_blend_tree.h +++ b/scene/animation/animation_blend_tree.h @@ -38,6 +38,8 @@ class AnimationNodeAnimation : public AnimationRootNode { StringName animation; + bool advance_on_start = false; + bool use_custom_timeline = false; double timeline_length = 1.0; Animation::LoopMode loop_mode = Animation::LOOP_NONE; @@ -72,6 +74,9 @@ public: void set_backward(bool p_backward); bool is_backward() const; + void set_advance_on_start(bool p_advance_on_start); + bool is_advance_on_start() const; + void set_use_custom_timeline(bool p_use_custom_timeline); bool is_using_custom_timeline() const; |