summaryrefslogtreecommitdiffstats
path: root/scene/animation/animation_tree.cpp
diff options
context:
space:
mode:
authorMicky <micheledevita2@gmail.com>2024-01-06 17:23:25 +0100
committerMicky <micheledevita2@gmail.com>2024-03-01 17:07:02 +0100
commit3c371b989f309527f01c311bf02bfb533286de76 (patch)
tree6278c49d8da75708c37e324e2fd8626b95ea59c2 /scene/animation/animation_tree.cpp
parent8e951fd0a92c551f260c3272039181be32121a32 (diff)
downloadredot-engine-3c371b989f309527f01c311bf02bfb533286de76.tar.gz
Add autocompletion to AnimationNode
Diffstat (limited to 'scene/animation/animation_tree.cpp')
-rw-r--r--scene/animation/animation_tree.cpp28
1 files changed, 28 insertions, 0 deletions
diff --git a/scene/animation/animation_tree.cpp b/scene/animation/animation_tree.cpp
index 2c2d8387f3..4889cd82af 100644
--- a/scene/animation/animation_tree.cpp
+++ b/scene/animation/animation_tree.cpp
@@ -444,6 +444,34 @@ double AnimationNode::blend_input_ex(int p_input, double p_time, bool p_seek, bo
return blend_input(p_input, info, p_filter, p_sync, p_test_only);
}
+#ifdef TOOLS_ENABLED
+void AnimationNode::get_argument_options(const StringName &p_function, int p_idx, List<String> *r_options) const {
+ const String pf = p_function;
+ if (p_idx == 0) {
+ if (pf == "find_input") {
+ for (const AnimationNode::Input &E : inputs) {
+ r_options->push_back(E.name.quote());
+ }
+ } else if (pf == "get_parameter" || pf == "set_parameter") {
+ bool is_setter = pf == "set_parameter";
+ List<PropertyInfo> parameters;
+ get_parameter_list(&parameters);
+ for (const PropertyInfo &E : parameters) {
+ if (is_setter && is_parameter_read_only(E.name)) {
+ continue;
+ }
+ r_options->push_back(E.name.quote());
+ }
+ } else if (pf == "set_filter_path" || pf == "is_path_filtered") {
+ for (const KeyValue<NodePath, bool> &E : filter) {
+ r_options->push_back(String(E.key).quote());
+ }
+ }
+ }
+ Resource::get_argument_options(p_function, p_idx, r_options);
+}
+#endif
+
void AnimationNode::_bind_methods() {
ClassDB::bind_method(D_METHOD("add_input", "name"), &AnimationNode::add_input);
ClassDB::bind_method(D_METHOD("remove_input", "index"), &AnimationNode::remove_input);