diff options
-rw-r--r-- | doc/base/classes.xml | 2 | ||||
-rw-r--r-- | scene/animation/animation_tree_player.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/base/classes.xml b/doc/base/classes.xml index b28c050a61..9b78a399d6 100644 --- a/doc/base/classes.xml +++ b/doc/base/classes.xml @@ -2747,7 +2747,7 @@ types of nodes have different amount of inputs. </description> </method> - <method name="node_get_input_sourcre" qualifiers="const" > + <method name="node_get_input_source" qualifiers="const" > <return type="String"> </return> <argument index="0" name="id" type="String"> diff --git a/scene/animation/animation_tree_player.cpp b/scene/animation/animation_tree_player.cpp index b55cc0d1a3..ec72123c98 100644 --- a/scene/animation/animation_tree_player.cpp +++ b/scene/animation/animation_tree_player.cpp @@ -1662,7 +1662,7 @@ void AnimationTreePlayer::_bind_methods() { ObjectTypeDB::bind_method(_MD("node_get_type","id"),&AnimationTreePlayer::node_get_type); ObjectTypeDB::bind_method(_MD("node_get_input_count","id"),&AnimationTreePlayer::node_get_input_count); - ObjectTypeDB::bind_method(_MD("node_get_input_sourcre","id","idx"),&AnimationTreePlayer::node_get_input_source); + ObjectTypeDB::bind_method(_MD("node_get_input_source","id","idx"),&AnimationTreePlayer::node_get_input_source); ObjectTypeDB::bind_method(_MD("animation_node_set_animation","id","animation:Animation"),&AnimationTreePlayer::animation_node_set_animation); ObjectTypeDB::bind_method(_MD("animation_node_get_animation:Animation","id"),&AnimationTreePlayer::animation_node_get_animation); |