diff options
author | Brandon DeRosier <bdero@mit.edu> | 2014-11-11 13:15:19 -0500 |
---|---|---|
committer | Brandon DeRosier <bdero@mit.edu> | 2014-11-11 13:15:19 -0500 |
commit | 4b76b2caf5d63dac47f57e4684ea255a11ce89d6 (patch) | |
tree | 7a99e693e0e2915a3d1e4e7167039d8129c0ba86 /scene | |
parent | 72d5c2b8caa7416ca2c8e66cddf14f65167cc6c1 (diff) |
Fix AnimationTreePlayer.node_get_input_source typo
- Changed node_get_input_sourcre to node_get_input_source
Diffstat (limited to 'scene')
-rw-r--r-- | scene/animation/animation_tree_player.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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); |