diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2017-09-01 21:29:00 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2017-09-01 21:29:00 +0200 |
commit | 39621bf6816295ef7b0243ea784f3fdf96257a98 (patch) | |
tree | 41b1bac23ab691f28aad4f41b27b36af2e9c5ccc /scene | |
parent | 90a944e85691157256f7cee5677c3ce062e9dc64 (diff) |
Fix AnimationTreePlayer bogus argument name
Regression from 6fa6149517b974fccd97e41f6b0a6466c83473fc.
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 5be7949e93..e2330eb0d4 100644 --- a/scene/animation/animation_tree_player.cpp +++ b/scene/animation/animation_tree_player.cpp @@ -1002,7 +1002,7 @@ void AnimationTreePlayer::animation_node_set_master_animation(const StringName & _update_sources(); } -void AnimationTreePlayer::animation_node_set_filter_path(const StringName &p_node, const NodePath &p_track_path, bool p_track_path) { +void AnimationTreePlayer::animation_node_set_filter_path(const StringName &p_node, const NodePath &p_track_path, bool p_filter) { GET_NODE(NODE_ANIMATION, AnimationNode); |