Don't use splash minimum display time in editor
This commit is contained in:
parent
287f3aa4e9
commit
5ee6d33d49
|
@ -2710,6 +2710,9 @@ bool Main::start() {
|
|||
}
|
||||
|
||||
uint64_t minimum_time_msec = GLOBAL_DEF(PropertyInfo(Variant::INT, "application/boot_splash/minimum_display_time", PROPERTY_HINT_RANGE, "0,100,1,or_greater,suffix:ms"), 0);
|
||||
if (Engine::get_singleton()->is_editor_hint()) {
|
||||
minimum_time_msec = 0;
|
||||
}
|
||||
|
||||
#ifdef TOOLS_ENABLED
|
||||
#ifdef MODULE_GDSCRIPT_ENABLED
|
||||
|
|
Loading…
Reference in New Issue