mirror of
https://github.com/godotengine/godot.git
synced 2025-11-01 14:11:15 +00:00
Expose Emscripten libs to engine.js discreetly
(cherry picked from commit 63c7fc6358)
This commit is contained in:
parent
71885e5ae4
commit
0f6626977b
3 changed files with 6 additions and 4 deletions
|
|
@ -1,3 +1,4 @@
|
|||
exposedLibs['FS'] = FS;
|
||||
return Module;
|
||||
},
|
||||
};
|
||||
|
|
@ -31,6 +32,8 @@
|
|||
|
||||
this.rtenv = null;
|
||||
|
||||
var LIBS = {};
|
||||
|
||||
var initPromise = null;
|
||||
var unloadAfterInit = true;
|
||||
|
||||
|
|
@ -80,7 +83,7 @@
|
|||
return new Promise(function(resolve, reject) {
|
||||
rtenvProps.onRuntimeInitialized = resolve;
|
||||
rtenvProps.onAbort = reject;
|
||||
rtenvProps.engine.rtenv = Engine.RuntimeEnvironment(rtenvProps);
|
||||
rtenvProps.engine.rtenv = Engine.RuntimeEnvironment(rtenvProps, LIBS);
|
||||
});
|
||||
}
|
||||
|
||||
|
|
@ -175,7 +178,7 @@
|
|||
this.rtenv.thisProgram = executableName || getBaseName(basePath);
|
||||
|
||||
preloadedFiles.forEach(function(file) {
|
||||
this.rtenv.FS.createDataFile('/', file.name, new Uint8Array(file.buffer), true, true, true);
|
||||
LIBS.FS.createDataFile('/', file.name, new Uint8Array(file.buffer), true, true, true);
|
||||
}, this);
|
||||
|
||||
preloadedFiles = null;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue