Merge pull request #73646 from KoBeWi/squish

Prevent off-screen controls in editor
This commit is contained in:
Rémi Verschelde 2023-04-03 17:07:54 +02:00
commit b85fc4aa6d
No known key found for this signature in database
GPG Key ID: C3336907360768E1
1 changed files with 4 additions and 0 deletions

View File

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