Ignore node rename if already exited blend tree
(cherry picked from commit f9bee90994
)
This commit is contained in:
parent
c8a748e7b6
commit
c86f4c7f58
1 changed files with 4 additions and 0 deletions
|
@ -843,6 +843,10 @@ void AnimationNodeBlendTreeEditor::_bind_methods() {
|
||||||
AnimationNodeBlendTreeEditor *AnimationNodeBlendTreeEditor::singleton = nullptr;
|
AnimationNodeBlendTreeEditor *AnimationNodeBlendTreeEditor::singleton = nullptr;
|
||||||
|
|
||||||
void AnimationNodeBlendTreeEditor::_node_renamed(const String &p_text, Ref<AnimationNode> p_node) {
|
void AnimationNodeBlendTreeEditor::_node_renamed(const String &p_text, Ref<AnimationNode> p_node) {
|
||||||
|
if (blend_tree.is_null()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
String prev_name = blend_tree->get_node_name(p_node);
|
String prev_name = blend_tree->get_node_name(p_node);
|
||||||
ERR_FAIL_COND(prev_name == String());
|
ERR_FAIL_COND(prev_name == String());
|
||||||
GraphNode *gn = Object::cast_to<GraphNode>(graph->get_node(prev_name));
|
GraphNode *gn = Object::cast_to<GraphNode>(graph->get_node(prev_name));
|
||||||
|
|
Loading…
Reference in a new issue