diff options
author | Yuri Rubinsky <chaosus89@gmail.com> | 2022-05-17 13:13:35 +0300 |
---|---|---|
committer | Yuri Rubinsky <chaosus89@gmail.com> | 2022-05-17 13:28:21 +0300 |
commit | c84d05098020db943223b552a281935ee7a32e12 (patch) | |
tree | 245c2f80b75c1cb7ca59d501d6beb008050b7078 /editor/plugins/animation_blend_tree_editor_plugin.h | |
parent | 4379383ccd7828a94bdc0e4c6692826f2e4ec2ec (diff) | |
download | redot-engine-c84d05098020db943223b552a281935ee7a32e12.tar.gz |
Add node list param to `GraphEdit::delete_nodes_request` signal
Diffstat (limited to 'editor/plugins/animation_blend_tree_editor_plugin.h')
-rw-r--r-- | editor/plugins/animation_blend_tree_editor_plugin.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/animation_blend_tree_editor_plugin.h b/editor/plugins/animation_blend_tree_editor_plugin.h index 7e96e069c7..b5bf91a1da 100644 --- a/editor/plugins/animation_blend_tree_editor_plugin.h +++ b/editor/plugins/animation_blend_tree_editor_plugin.h @@ -103,7 +103,7 @@ class AnimationNodeBlendTreeEditor : public AnimationTreeNodeEditorPlugin { void _open_in_editor(const String &p_which); void _anim_selected(int p_index, Array p_options, const String &p_node); void _delete_request(const String &p_which); - void _delete_nodes_request(); + void _delete_nodes_request(const TypedArray<StringName> &p_nodes); bool _update_filters(const Ref<AnimationNode> &anode); void _edit_filters(const String &p_which); |