diff options
| author | Juan Linietsky | 2017-09-01 15:01:17 -0300 |
|---|---|---|
| committer | Juan Linietsky | 2017-09-01 15:01:17 -0300 |
| commit | 6fa6149517b974fccd97e41f6b0a6466c83473fc (patch) | |
| tree | 8d0139da70b09a755cab597a71099afbb29a877f /scene/animation/animation_tree_player.h | |
| parent | 5f8df8bc11ffd9b13138b085ded1640737e24c19 (diff) | |
| download | godot-6fa6149517b974fccd97e41f6b0a6466c83473fc.tar.gz godot-6fa6149517b974fccd97e41f6b0a6466c83473fc.tar.zst godot-6fa6149517b974fccd97e41f6b0a6466c83473fc.zip | |
Fix some argument ordering, closes #10010
Diffstat (limited to '')
| -rw-r--r-- | scene/animation/animation_tree_player.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/animation/animation_tree_player.h b/scene/animation/animation_tree_player.h index 71d727711..609430340 100644 --- a/scene/animation/animation_tree_player.h +++ b/scene/animation/animation_tree_player.h @@ -347,7 +347,7 @@ public: void animation_node_set_master_animation(const StringName &p_node, const String &p_master_animation); String animation_node_get_master_animation(const StringName &p_node) const; - void animation_node_set_filter_path(const StringName &p_node, const NodePath &p_filter, bool p_enable); + void animation_node_set_filter_path(const StringName &p_node, const NodePath &p_track_path, bool p_filter); void animation_node_set_get_filtered_paths(const StringName &p_node, List<NodePath> *r_paths) const; bool animation_node_is_path_filtered(const StringName &p_node, const NodePath &p_path) const; |
