summaryrefslogtreecommitdiffstats
path: root/editor/plugins/animation_blend_tree_editor_plugin.h
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-01-04 16:38:32 +0100
committerRémi Verschelde <rverschelde@gmail.com>2024-01-04 16:38:32 +0100
commit0d18a945ca1424367d55bf4fd54270353939443f (patch)
treec0795b495c881d0cd49cc7e562e000d7fc5ae3bf /editor/plugins/animation_blend_tree_editor_plugin.h
parent94f72a72e2500cbf727dd76ac52239ab15ddc591 (diff)
parentafe25937e4ff1938447ea8f7c6b2c3ce9bf38e2e (diff)
downloadredot-engine-0d18a945ca1424367d55bf4fd54270353939443f.tar.gz
Merge pull request #76654 from TokageItLab/improve-filter-util-anim-tree
Add useful functions to `FilterEdit` in `AnimationBlendTreeEditor`
Diffstat (limited to 'editor/plugins/animation_blend_tree_editor_plugin.h')
-rw-r--r--editor/plugins/animation_blend_tree_editor_plugin.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/editor/plugins/animation_blend_tree_editor_plugin.h b/editor/plugins/animation_blend_tree_editor_plugin.h
index 1f7a33e02a..690b127938 100644
--- a/editor/plugins/animation_blend_tree_editor_plugin.h
+++ b/editor/plugins/animation_blend_tree_editor_plugin.h
@@ -66,6 +66,9 @@ class AnimationNodeBlendTreeEditor : public AnimationTreeNodeEditorPlugin {
AcceptDialog *filter_dialog = nullptr;
Tree *filters = nullptr;
CheckBox *filter_enabled = nullptr;
+ Button *filter_fill_selection = nullptr;
+ Button *filter_invert_selection = nullptr;
+ Button *filter_clear_selection = nullptr;
HashMap<StringName, ProgressBar *> animations;
Vector<EditorProperty *> visible_properties;
@@ -116,6 +119,12 @@ class AnimationNodeBlendTreeEditor : public AnimationTreeNodeEditorPlugin {
void _inspect_filters(const String &p_which);
void _filter_edited();
void _filter_toggled();
+ void _filter_fill_selection();
+ void _filter_invert_selection();
+ void _filter_clear_selection();
+ void _filter_fill_selection_recursive(EditorUndoRedoManager *p_undo_redo, TreeItem *p_item, bool p_parent_filtered);
+ void _filter_invert_selection_recursive(EditorUndoRedoManager *p_undo_redo, TreeItem *p_item);
+ void _filter_clear_selection_recursive(EditorUndoRedoManager *p_undo_redo, TreeItem *p_item);
Ref<AnimationNode> _filter_edit;
void _popup(bool p_has_input_ports, const Vector2 &p_node_position);