Prevent off-screen controls in editor

(cherry picked from commit 55b50703d7)
This commit is contained in:
kobewi 2023-04-07 17:44:38 +02:00 committed by Yuri Sizov
parent 87a9d2c87e
commit 88d446f6c6

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