diff options
author | muiroc <ian.mario.dev@gmail.com> | 2020-02-04 17:45:48 +0100 |
---|---|---|
committer | muiroc <ian.mario.dev@gmail.com> | 2020-02-04 17:45:48 +0100 |
commit | ed3a8cc83dccc0385ce92ef52f18d6bcbbd4b4af (patch) | |
tree | 06daaed1072fbbf301f46168e439a064abbe1265 | |
parent | c4daac279b8ec6f4893056ba6717624f701ab970 (diff) |
pass missing args in AnimationNode script calls
-rw-r--r-- | scene/animation/animation_tree.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scene/animation/animation_tree.cpp b/scene/animation/animation_tree.cpp index 8b2d8861e7..7efe6f998d 100644 --- a/scene/animation/animation_tree.cpp +++ b/scene/animation/animation_tree.cpp @@ -49,7 +49,7 @@ void AnimationNode::get_parameter_list(List<PropertyInfo> *r_list) const { Variant AnimationNode::get_parameter_default_value(const StringName &p_parameter) const { if (get_script_instance()) { - return get_script_instance()->call("get_parameter_default_value"); + return get_script_instance()->call("get_parameter_default_value", p_parameter); } return Variant(); } @@ -397,7 +397,7 @@ void AnimationNode::_validate_property(PropertyInfo &property) const { Ref<AnimationNode> AnimationNode::get_child_by_name(const StringName &p_name) { if (get_script_instance()) { - return get_script_instance()->call("get_child_by_name"); + return get_script_instance()->call("get_child_by_name", p_name); } return Ref<AnimationNode>(); } |