mirror of
https://github.com/godotengine/godot.git
synced 2025-11-02 06:31:13 +00:00
Emit asm.js code into a dedicated file for asm.js export
This helps prevent browser lockups during start-up at the cost of having to distribute an extra file.
This commit is contained in:
parent
d5c6806e16
commit
290d79f26c
2 changed files with 6 additions and 0 deletions
|
|
@ -320,6 +320,11 @@ Error EditorExportPlatformJavaScript::export_project(const String& p_path, bool
|
|||
file=p_path.get_file().basename()+".js";
|
||||
}
|
||||
|
||||
if (file=="godot.asm.js") {
|
||||
|
||||
file=p_path.get_file().basename()+".asm.js";
|
||||
}
|
||||
|
||||
if (file=="godot.mem") {
|
||||
|
||||
file=p_path.get_file().basename()+".mem";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue