diff options
author | kit <kitbdev@gmail.com> | 2024-08-19 18:08:31 -0400 |
---|---|---|
committer | kit <kitbdev@gmail.com> | 2024-09-09 11:06:18 -0400 |
commit | 5e1c9d68aad00ad025a14f4a1907b92a6f7f6310 (patch) | |
tree | 2772c83f7f4b89b5a422113726b3c0611d4f0b30 /modules/navigation/editor | |
parent | d0dc3896ad6fe039e4ad0607d901c81197cb3a3b (diff) | |
download | redot-engine-5e1c9d68aad00ad025a14f4a1907b92a6f7f6310.tar.gz |
Extract editor main screen
Diffstat (limited to 'modules/navigation/editor')
-rw-r--r-- | modules/navigation/editor/navigation_mesh_editor_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/navigation/editor/navigation_mesh_editor_plugin.cpp b/modules/navigation/editor/navigation_mesh_editor_plugin.cpp index f37ed9b168..7f0cbc7b5e 100644 --- a/modules/navigation/editor/navigation_mesh_editor_plugin.cpp +++ b/modules/navigation/editor/navigation_mesh_editor_plugin.cpp @@ -176,7 +176,7 @@ void NavigationMeshEditorPlugin::make_visible(bool p_visible) { NavigationMeshEditorPlugin::NavigationMeshEditorPlugin() { navigation_mesh_editor = memnew(NavigationMeshEditor); - EditorNode::get_singleton()->get_main_screen_control()->add_child(navigation_mesh_editor); + EditorNode::get_singleton()->get_gui_base()->add_child(navigation_mesh_editor); add_control_to_container(CONTAINER_SPATIAL_EDITOR_MENU, navigation_mesh_editor->bake_hbox); navigation_mesh_editor->hide(); navigation_mesh_editor->bake_hbox->hide(); |