diff options
author | SaracenOne <SaracenOne@gmail.com> | 2022-05-04 06:31:53 +0100 |
---|---|---|
committer | SaracenOne <SaracenOne@gmail.com> | 2022-08-25 16:29:36 +0100 |
commit | 75f1357ced3423d29efca6ff46eaf2ef3432bd73 (patch) | |
tree | f05387c3cc8cfed981f5007697d522f5893d25db /editor/plugins/animation_blend_tree_editor_plugin.h | |
parent | d0a2a4c98195eb8a43713286b5b865dfbed05163 (diff) | |
download | redot-engine-75f1357ced3423d29efca6ff46eaf2ef3432bd73.tar.gz |
Add read-only mode to AnimationTreeEditor plugins
Diffstat (limited to 'editor/plugins/animation_blend_tree_editor_plugin.h')
-rw-r--r-- | editor/plugins/animation_blend_tree_editor_plugin.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/editor/plugins/animation_blend_tree_editor_plugin.h b/editor/plugins/animation_blend_tree_editor_plugin.h index af43da6197..30a54930a2 100644 --- a/editor/plugins/animation_blend_tree_editor_plugin.h +++ b/editor/plugins/animation_blend_tree_editor_plugin.h @@ -47,6 +47,9 @@ class AnimationNodeBlendTreeEditor : public AnimationTreeNodeEditorPlugin { GDCLASS(AnimationNodeBlendTreeEditor, AnimationTreeNodeEditorPlugin); Ref<AnimationNodeBlendTree> blend_tree; + + bool read_only = false; + GraphEdit *graph = nullptr; MenuButton *add_node = nullptr; Vector2 position_from_popup_menu; @@ -106,7 +109,7 @@ class AnimationNodeBlendTreeEditor : public AnimationTreeNodeEditorPlugin { void _delete_nodes_request(const TypedArray<StringName> &p_nodes); bool _update_filters(const Ref<AnimationNode> &anode); - void _edit_filters(const String &p_which); + void _inspect_filters(const String &p_which); void _filter_edited(); void _filter_toggled(); Ref<AnimationNode> _filter_edit; |