From a00317d3bd17294c55919d243f3a4384368bbe37 Mon Sep 17 00:00:00 2001 From: vaner-org <9658355+vaner-org@users.noreply.github.com> Date: Wed, 18 Mar 2026 18:10:33 +0530 Subject: [PATCH] Fix early return preventing BlendTree graph update --- editor/animation/animation_blend_tree_editor_plugin.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/editor/animation/animation_blend_tree_editor_plugin.cpp b/editor/animation/animation_blend_tree_editor_plugin.cpp index 654365e1e0..a6fc12cee6 100644 --- a/editor/animation/animation_blend_tree_editor_plugin.cpp +++ b/editor/animation/animation_blend_tree_editor_plugin.cpp @@ -133,11 +133,13 @@ void AnimationNodeBlendTreeEditor::update_graph() { void AnimationNodeBlendTreeEditor::update_graph_immediately() { if (updating || blend_tree.is_null()) { + graph_update_queued = false; return; } AnimationTree *tree = AnimationTreeEditor::get_singleton()->get_animation_tree(); if (!tree) { + graph_update_queued = false; return; }