diff options
author | Silc Renew <tokage.it.lab@gmail.com> | 2022-09-01 23:00:55 +0900 |
---|---|---|
committer | Silc Renew <tokage.it.lab@gmail.com> | 2022-09-14 21:05:21 +0900 |
commit | cff95e54e05c9b5f14698ecc02f37bda658d0c22 (patch) | |
tree | 559fca5090c5425c589280b750d2b0b4bca09ab0 /editor/plugins/animation_blend_tree_editor_plugin.h | |
parent | 0c221f0284909a1156a1c98de5104e07c1cce0b9 (diff) | |
download | redot-engine-cff95e54e05c9b5f14698ecc02f37bda658d0c22.tar.gz |
Fix redraw timing in AnimationBlendTreeEditor
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, 3 insertions, 2 deletions
diff --git a/editor/plugins/animation_blend_tree_editor_plugin.h b/editor/plugins/animation_blend_tree_editor_plugin.h index 30a54930a2..46e0d18c69 100644 --- a/editor/plugins/animation_blend_tree_editor_plugin.h +++ b/editor/plugins/animation_blend_tree_editor_plugin.h @@ -71,8 +71,6 @@ class AnimationNodeBlendTreeEditor : public AnimationTreeNodeEditorPlugin { int to_slot = -1; String from_node = ""; - void _update_graph(); - struct AddOption { String name; String type; @@ -95,6 +93,7 @@ class AnimationNodeBlendTreeEditor : public AnimationTreeNodeEditorPlugin { void _node_dragged(const Vector2 &p_from, const Vector2 &p_to, const StringName &p_which); void _node_renamed(const String &p_text, Ref<AnimationNode> p_node); void _node_renamed_focus_out(Node *le, Ref<AnimationNode> p_node); + void _node_changed(const StringName &p_node_name); bool updating; @@ -150,6 +149,8 @@ public: virtual bool can_edit(const Ref<AnimationNode> &p_node) override; virtual void edit(const Ref<AnimationNode> &p_node) override; + void update_graph(); + AnimationNodeBlendTreeEditor(); }; |