diff options
author | Danil Alexeev <danil@alexeev.xyz> | 2022-06-28 18:13:00 +0300 |
---|---|---|
committer | Danil Alexeev <danil@alexeev.xyz> | 2022-06-28 18:54:51 +0300 |
commit | dad9683d11ca174cf50d0039fb0f05fb7439984f (patch) | |
tree | 1f2a444e9f4dda6e3c7f2d926ae88c45321243ca /main | |
parent | 2ea7765f7678cb187f15cf4bf585a2f5536f94c3 (diff) |
Add boot splash display time setting
Implements #8867.
Diffstat (limited to 'main')
-rw-r--r-- | main/main.cpp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/main/main.cpp b/main/main.cpp index bfb0eacdfc..6ce16e03e9 100644 --- a/main/main.cpp +++ b/main/main.cpp @@ -2175,6 +2175,13 @@ bool Main::start() { #endif } + uint64_t minimum_time_msec = GLOBAL_DEF("application/boot_splash/minimum_display_time", 0); + ProjectSettings::get_singleton()->set_custom_property_info("application/boot_splash/minimum_display_time", + PropertyInfo(Variant::INT, + "application/boot_splash/minimum_display_time", + PROPERTY_HINT_RANGE, + "0,100,1,or_greater,suffix:ms")); // No negative numbers. + #ifdef TOOLS_ENABLED if (!doc_tool_path.is_empty()) { // Needed to instance editor-only classes for their default values @@ -2692,6 +2699,15 @@ bool Main::start() { if (movie_writer) { movie_writer->begin(DisplayServer::get_singleton()->window_get_size(), fixed_fps, write_movie_path); } + + if (minimum_time_msec) { + uint64_t minimum_time = 1000 * minimum_time_msec; + uint64_t elapsed_time = OS::get_singleton()->get_ticks_usec(); + if (elapsed_time < minimum_time) { + OS::get_singleton()->delay_usec(minimum_time - elapsed_time); + } + } + return true; } |