diff options
author | Juan Linietsky <reduzio@gmail.com> | 2021-10-11 19:27:50 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-11 19:27:50 -0300 |
commit | 610de0974db4feb7e50c9349a8a164b6bf0f36c8 (patch) | |
tree | 9d5b542652e576f865abf0c97a37ee272210ae2e /scene/animation/animation_blend_tree.h | |
parent | 9ed4f8367b29204b89f9feaf86727b24396fb180 (diff) | |
download | redot-engine-610de0974db4feb7e50c9349a8a164b6bf0f36c8.tar.gz |
Revert "Implement reverse playback and ping-pong loop in AnimationPlayer and NodeAnimation"
Diffstat (limited to 'scene/animation/animation_blend_tree.h')
-rw-r--r-- | scene/animation/animation_blend_tree.h | 26 |
1 files changed, 5 insertions, 21 deletions
diff --git a/scene/animation/animation_blend_tree.h b/scene/animation/animation_blend_tree.h index e55dfb58ed..258443a999 100644 --- a/scene/animation/animation_blend_tree.h +++ b/scene/animation/animation_blend_tree.h @@ -42,12 +42,12 @@ class AnimationNodeAnimation : public AnimationRootNode { uint64_t last_version = 0; bool skip = false; -public: - enum PlayMode { - PLAY_MODE_FORWARD, - PLAY_MODE_BACKWARD - }; +protected: + void _validate_property(PropertyInfo &property) const override; + static void _bind_methods(); + +public: void get_parameter_list(List<PropertyInfo> *r_list) const override; static Vector<String> (*get_editable_animation_list)(); @@ -58,25 +58,9 @@ public: void set_animation(const StringName &p_name); StringName get_animation() const; - void set_play_mode(PlayMode p_play_mode); - PlayMode get_play_mode() const; - - void set_backward(bool p_backward); - bool is_backward() const; - AnimationNodeAnimation(); - -protected: - void _validate_property(PropertyInfo &property) const override; - static void _bind_methods(); - -private: - PlayMode play_mode = PLAY_MODE_FORWARD; - bool backward = false; }; -VARIANT_ENUM_CAST(AnimationNodeAnimation::PlayMode) - class AnimationNodeOneShot : public AnimationNode { GDCLASS(AnimationNodeOneShot, AnimationNode); |