Use new dock system for Animation dock

This commit is contained in:
Logan Detrick 2025-12-02 12:30:43 -08:00
parent a2db180527
commit a0c2d3d51d
9 changed files with 77 additions and 55 deletions

View file

@ -8944,9 +8944,6 @@ EditorNode::EditorNode() {
gui_base->add_child(project_data_missing);
add_editor_plugin(memnew(AnimationPlayerEditorPlugin));
add_editor_plugin(memnew(AnimationTrackKeyEditEditorPlugin));
add_editor_plugin(memnew(AnimationMarkerKeyEditEditorPlugin));
add_editor_plugin(memnew(CanvasItemEditorPlugin));
add_editor_plugin(memnew(Node3DEditorPlugin));
add_editor_plugin(memnew(ScriptEditorPlugin));
@ -8967,7 +8964,9 @@ EditorNode::EditorNode() {
}
// More visually meaningful to have this later.
bottom_panel->move_item_to_end(AnimationPlayerEditor::get_singleton());
add_editor_plugin(memnew(AnimationPlayerEditorPlugin));
add_editor_plugin(memnew(AnimationTrackKeyEditEditorPlugin));
add_editor_plugin(memnew(AnimationMarkerKeyEditEditorPlugin));
add_editor_plugin(VersionControlEditorPlugin::get_singleton());