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); } }