diff options
author | Silc Renew <tokage.it.lab@gmail.com> | 2023-01-29 23:54:13 +0900 |
---|---|---|
committer | Silc Renew <tokage.it.lab@gmail.com> | 2023-01-30 03:52:55 +0900 |
commit | d27005f80e8f05fdf8de4a39973c74320c03766d (patch) | |
tree | e7279cfa8814e1e6f664fe338b3228f2247b32c7 /scene/animation/animation_tree.h | |
parent | a3dae9e548e5fbab7b7be070cf71f972656f759b (diff) | |
download | redot-engine-d27005f80e8f05fdf8de4a39973c74320c03766d.tar.gz |
Remove the max input limit & cleanup AnimationNodeTransition API
Diffstat (limited to 'scene/animation/animation_tree.h')
-rw-r--r-- | scene/animation/animation_tree.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/scene/animation/animation_tree.h b/scene/animation/animation_tree.h index c54493828f..a6fb4a8430 100644 --- a/scene/animation/animation_tree.h +++ b/scene/animation/animation_tree.h @@ -141,12 +141,12 @@ public: virtual double process(double p_time, bool p_seek, bool p_is_external_seeking); virtual String get_caption() const; + virtual bool add_input(const String &p_name); + virtual void remove_input(int p_index); + virtual bool set_input_name(int p_input, const String &p_name); + virtual String get_input_name(int p_input) const; int get_input_count() const; - String get_input_name(int p_input); - - void add_input(const String &p_name); - void set_input_name(int p_input, const String &p_name); - void remove_input(int p_index); + int find_input(const String &p_name) const; void set_filter_path(const NodePath &p_path, bool p_enable); bool is_path_filtered(const NodePath &p_path) const; |