1
0
mirror of https://github.com/godotengine/godot.git synced 2026-01-03 19:11:41 +00:00

Merge pull request #113255 from lodetrick/animation-dock

Use new dock system for Animation and AnimationTree dock
This commit is contained in:
Thaddeus Crews
2025-12-03 11:42:19 -06:00
9 changed files with 77 additions and 55 deletions

View File

@@ -8967,9 +8967,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));
@@ -8990,7 +8987,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());