From fe5450298758d86041fc444b4942dfd136312d92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Dunne=20Fulmer?= Date: Sun, 4 Jan 2026 20:13:25 +0000 Subject: [PATCH] Fix animation editor sometimes not processing on scene change --- editor/animation/animation_player_editor_plugin.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/editor/animation/animation_player_editor_plugin.cpp b/editor/animation/animation_player_editor_plugin.cpp index 5c4df16f2f..5b8b5cf42f 100644 --- a/editor/animation/animation_player_editor_plugin.cpp +++ b/editor/animation/animation_player_editor_plugin.cpp @@ -70,7 +70,9 @@ void AnimationPlayerEditor::_find_player() { TypedArray players = edited_scene->find_children("", "AnimationPlayer"); if (players.size() == 1) { + // Replicating EditorNode::_plugin_over_edit to ensure an identical setup as when selecting manually. plugin->edit(players.front()); + plugin->make_visible(true); } }