mirror of
https://github.com/godotengine/godot.git
synced 2025-10-23 18:03:35 +00:00
[HTML5] Better editor HTML, small refactor.
Side and GDNative libraries are now added by engine.js , the dynlink pre js had been deleted.
This commit is contained in:
parent
abb8d8e8ca
commit
4e09453407
6 changed files with 38 additions and 9 deletions
|
@ -62,7 +62,7 @@ const Engine = (function () {
|
|||
// Emscripten configuration.
|
||||
config['thisProgram'] = me.executableName;
|
||||
config['noExitRuntime'] = true;
|
||||
config['dynamicLibraries'] = me.gdnativeLibs;
|
||||
config['dynamicLibraries'] = [`${me.executableName}.side.wasm`].concat(me.gdnativeLibs);
|
||||
Godot(config).then(function (module) {
|
||||
module['initFS'](me.persistentPaths).then(function (fs_err) {
|
||||
me.rtenv = module;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue