Fix AnimationTreePlayer.node_get_input_source typo
- Changed node_get_input_sourcre to node_get_input_source
This commit is contained in:
parent
72d5c2b8ca
commit
4b76b2caf5
2 changed files with 2 additions and 2 deletions
|
@ -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">
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue