mirror of
https://github.com/godotengine/godot.git
synced 2025-12-08 06:09:55 +00:00
Fix startGame's logic in engine.js.
This commit is contained in:
parent
c48237967a
commit
cb29ce8a3b
1 changed files with 2 additions and 4 deletions
|
|
@ -134,12 +134,10 @@
|
||||||
this.startGame = function(execName, mainPack) {
|
this.startGame = function(execName, mainPack) {
|
||||||
|
|
||||||
executableName = execName;
|
executableName = execName;
|
||||||
var mainArgs = [ '--main-pack', mainPack ];
|
var mainArgs = [ '--main-pack', getPathLeaf(mainPack) ];
|
||||||
|
|
||||||
return Promise.all([
|
return Promise.all([
|
||||||
// Load from directory,
|
this.init(getBasePath(execName)),
|
||||||
this.init(getBasePath(mainPack)),
|
|
||||||
// ...but write to root where the engine expects it.
|
|
||||||
this.preloadFile(mainPack, getPathLeaf(mainPack))
|
this.preloadFile(mainPack, getPathLeaf(mainPack))
|
||||||
]).then(
|
]).then(
|
||||||
Function.prototype.apply.bind(synchronousStart, this, mainArgs)
|
Function.prototype.apply.bind(synchronousStart, this, mainArgs)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue