summaryrefslogtreecommitdiffstats
path: root/platform/web
diff options
context:
space:
mode:
authorThaddeus Crews <repiteo@outlook.com>2024-11-12 09:28:08 -0600
committerThaddeus Crews <repiteo@outlook.com>2024-11-12 09:28:08 -0600
commita833685e7504595f1629120adec0b1ac7fb509b9 (patch)
tree759d6bb2e5aea59df54f8a69efd5e537ce6f2c0b /platform/web
parentcf160747a00a4cd13e2214dceb5dd24606f0c572 (diff)
parent4db5cd6e848b1cd50a6517e74d8564de3c158051 (diff)
downloadredot-engine-a833685e7504595f1629120adec0b1ac7fb509b9.tar.gz
Merge pull request #96625 from elpozewaunig/web_splash_color
Display project settings splash color on web export
Diffstat (limited to 'platform/web')
-rw-r--r--platform/web/export/export_plugin.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/platform/web/export/export_plugin.cpp b/platform/web/export/export_plugin.cpp
index efe3c95496..a6835a28b2 100644
--- a/platform/web/export/export_plugin.cpp
+++ b/platform/web/export/export_plugin.cpp
@@ -169,6 +169,7 @@ void EditorExportPlatformWeb::_fix_html(Vector<uint8_t> &p_html, const Ref<Edito
replaces["$GODOT_PROJECT_NAME"] = GLOBAL_GET("application/config/name");
replaces["$GODOT_HEAD_INCLUDE"] = head_include + custom_head_include;
replaces["$GODOT_CONFIG"] = str_config;
+ replaces["$GODOT_SPLASH_COLOR"] = "#" + Color(GLOBAL_GET("application/boot_splash/bg_color")).to_html(false);
replaces["$GODOT_SPLASH"] = p_name + ".png";
if (p_preset->get("variant/thread_support")) {