1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

Merge pull request #96208 from m4gr3d/cleanup_immersive_logic

Restore fullscreen toggle menu for the Android editor and clean up the immersive mode logic
This commit is contained in:
Rémi Verschelde
2024-08-30 09:59:27 +02:00
9 changed files with 128 additions and 57 deletions

View File

@@ -2700,7 +2700,7 @@ void EditorExportPlatformAndroid::get_command_line_flags(const Ref<EditorExportP
bool immersive = p_preset->get("screen/immersive_mode");
if (immersive) {
command_line_strings.push_back("--use_immersive");
command_line_strings.push_back("--fullscreen");
}
bool debug_opengl = p_preset->get("graphics/opengl_debug");