summaryrefslogtreecommitdiffstats
path: root/platform/web/export/export_plugin.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-04-30 17:03:21 +0200
committerRémi Verschelde <rverschelde@gmail.com>2024-04-30 17:03:21 +0200
commitb1da4b2a840668f0ae8ab0271905d63ef3a942f2 (patch)
treeb5d4807775e42e8383c93ddda8cef05f09593d22 /platform/web/export/export_plugin.cpp
parentef481148b2f3e406521080ce85ea4b401f5cac23 (diff)
parent7c8a4a9daba4261571a7c7877be93b0ceca649ce (diff)
downloadredot-engine-b1da4b2a840668f0ae8ab0271905d63ef3a942f2.tar.gz
Merge pull request #91128 from patwork/splash-image-in-web-export
Splash image support and new progress bar for HTML5 Web Export
Diffstat (limited to 'platform/web/export/export_plugin.cpp')
-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 41c969b5f4..92da7799e7 100644
--- a/platform/web/export/export_plugin.cpp
+++ b/platform/web/export/export_plugin.cpp
@@ -170,6 +170,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"] = p_name + ".png";
if (p_preset->get("variant/thread_support")) {
replaces["$GODOT_THREADS_ENABLED"] = "true";