You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-07 12:30:27 +00:00
Reorganize main and sub-window initial position properties.
This commit is contained in:
@@ -185,6 +185,7 @@ static bool init_maximized = false;
|
||||
static bool init_windowed = false;
|
||||
static bool init_always_on_top = false;
|
||||
static bool init_use_custom_pos = false;
|
||||
static bool init_use_custom_screen = false;
|
||||
static Vector2 init_custom_pos;
|
||||
|
||||
// Debug
|
||||
@@ -964,6 +965,7 @@ Error Main::setup(const char *execpath, int argc, char *argv[], bool p_second_ph
|
||||
|
||||
if (I->next()) {
|
||||
init_screen = I->next()->get().to_int();
|
||||
init_use_custom_screen = true;
|
||||
|
||||
N = I->next()->next();
|
||||
} else {
|
||||
@@ -1669,7 +1671,23 @@ Error Main::setup(const char *execpath, int argc, char *argv[], bool p_second_ph
|
||||
window_flags |= DisplayServer::WINDOW_FLAG_NO_FOCUS_BIT;
|
||||
}
|
||||
window_mode = (DisplayServer::WindowMode)(GLOBAL_GET("display/window/size/mode").operator int());
|
||||
init_screen = GLOBAL_GET("display/window/size/initial_screen").operator int();
|
||||
int initial_position_type = GLOBAL_GET("display/window/size/initial_position_type").operator int();
|
||||
if (initial_position_type == 0) {
|
||||
if (!init_use_custom_pos) {
|
||||
init_custom_pos = GLOBAL_GET("display/window/size/initial_position").operator Vector2i();
|
||||
init_use_custom_pos = true;
|
||||
}
|
||||
} else if (initial_position_type == 1) {
|
||||
if (!init_use_custom_screen) {
|
||||
init_screen = DisplayServer::SCREEN_PRIMARY;
|
||||
init_use_custom_screen = true;
|
||||
}
|
||||
} else if (initial_position_type == 2) {
|
||||
if (!init_use_custom_screen) {
|
||||
init_screen = GLOBAL_GET("display/window/size/initial_screen").operator int();
|
||||
init_use_custom_screen = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
GLOBAL_DEF("internationalization/locale/include_text_server_data", false);
|
||||
|
||||
Reference in New Issue
Block a user