You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-07 12:30:27 +00:00
Added the set/get_setting function in Editor/Project settings. Renamed has() to has_setting. Fixes #11844
This commit is contained in:
@@ -726,7 +726,7 @@ Error Main::setup(const char *execpath, int argc, char *argv[], bool p_second_ph
|
||||
|
||||
#ifdef TOOLS_ENABLED
|
||||
|
||||
if (main_args.size() == 0 && (!ProjectSettings::get_singleton()->has("application/run/main_loop_type")) && (!ProjectSettings::get_singleton()->has("application/run/main_scene") || String(ProjectSettings::get_singleton()->get("application/run/main_scene")) == ""))
|
||||
if (main_args.size() == 0 && (!ProjectSettings::get_singleton()->has_setting("application/run/main_loop_type")) && (!ProjectSettings::get_singleton()->has_setting("application/run/main_scene") || String(ProjectSettings::get_singleton()->get("application/run/main_scene")) == ""))
|
||||
use_custom_res = false; //project manager (run without arguments)
|
||||
|
||||
#endif
|
||||
@@ -739,21 +739,21 @@ Error Main::setup(const char *execpath, int argc, char *argv[], bool p_second_ph
|
||||
//if (video_driver == "") // useless for now, so removing
|
||||
// video_driver = GLOBAL_DEF("display/driver/name", Variant((const char *)OS::get_singleton()->get_video_driver_name(0)));
|
||||
|
||||
if (!force_res && use_custom_res && globals->has("display/window/size/width"))
|
||||
if (!force_res && use_custom_res && globals->has_setting("display/window/size/width"))
|
||||
video_mode.width = globals->get("display/window/size/width");
|
||||
if (!force_res && use_custom_res && globals->has("display/window/size/height"))
|
||||
if (!force_res && use_custom_res && globals->has_setting("display/window/size/height"))
|
||||
video_mode.height = globals->get("display/window/size/height");
|
||||
if (!editor && ((globals->has("display/window/dpi/allow_hidpi") && !globals->get("display/window/dpi/allow_hidpi")) || force_lowdpi)) {
|
||||
if (!editor && ((globals->has_setting("display/window/dpi/allow_hidpi") && !globals->get("display/window/dpi/allow_hidpi")) || force_lowdpi)) {
|
||||
OS::get_singleton()->_allow_hidpi = false;
|
||||
}
|
||||
if (use_custom_res && globals->has("display/window/size/fullscreen"))
|
||||
if (use_custom_res && globals->has_setting("display/window/size/fullscreen"))
|
||||
video_mode.fullscreen = globals->get("display/window/size/fullscreen");
|
||||
if (use_custom_res && globals->has("display/window/size/resizable"))
|
||||
if (use_custom_res && globals->has_setting("display/window/size/resizable"))
|
||||
video_mode.resizable = globals->get("display/window/size/resizable");
|
||||
if (use_custom_res && globals->has("display/window/size/borderless"))
|
||||
if (use_custom_res && globals->has_setting("display/window/size/borderless"))
|
||||
video_mode.borderless_window = globals->get("display/window/size/borderless");
|
||||
|
||||
if (!force_res && use_custom_res && globals->has("display/window/size/test_width") && globals->has("display/window/size/test_height")) {
|
||||
if (!force_res && use_custom_res && globals->has_setting("display/window/size/test_width") && globals->has_setting("display/window/size/test_height")) {
|
||||
int tw = globals->get("display/window/size/test_width");
|
||||
int th = globals->get("display/window/size/test_height");
|
||||
if (tw > 0 && th > 0) {
|
||||
|
||||
Reference in New Issue
Block a user