diff options
author | Micky <micheledevita2@gmail.com> | 2024-01-06 17:23:25 +0100 |
---|---|---|
committer | Micky <micheledevita2@gmail.com> | 2024-03-01 17:07:02 +0100 |
commit | 3c371b989f309527f01c311bf02bfb533286de76 (patch) | |
tree | 6278c49d8da75708c37e324e2fd8626b95ea59c2 /scene/animation/animation_tree.h | |
parent | 8e951fd0a92c551f260c3272039181be32121a32 (diff) | |
download | redot-engine-3c371b989f309527f01c311bf02bfb533286de76.tar.gz |
Add autocompletion to AnimationNode
Diffstat (limited to 'scene/animation/animation_tree.h')
-rw-r--r-- | scene/animation/animation_tree.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scene/animation/animation_tree.h b/scene/animation/animation_tree.h index 87928e4d20..8b2a117b05 100644 --- a/scene/animation/animation_tree.h +++ b/scene/animation/animation_tree.h @@ -151,6 +151,10 @@ public: virtual bool has_filter() const; +#ifdef TOOLS_ENABLED + virtual void get_argument_options(const StringName &p_function, int p_idx, List<String> *r_options) const override; +#endif + virtual Ref<AnimationNode> get_child_by_name(const StringName &p_name) const; Ref<AnimationNode> find_node_by_path(const String &p_name) const; |