Prevent off-screen controls in editor

This commit is contained in:
kobewi 2023-02-20 20:25:39 +01:00
parent 9c960a8c24
commit 55b50703d7
1 changed files with 4 additions and 0 deletions

View File

@ -1408,6 +1408,10 @@ SceneTree::SceneTree() {
root->set_name("root");
root->set_title(GLOBAL_GET("application/config/name"));
if (Engine::get_singleton()->is_editor_hint()) {
root->set_wrap_controls(true);
}
#ifndef _3D_DISABLED
if (!root->get_world_3d().is_valid()) {
root->set_world_3d(Ref<World3D>(memnew(World3D)));