Wait for backgrounds to render before starting

This commit is contained in:
LoveEevee 2018-11-23 22:15:10 +03:00
parent 96b8e9f3a2
commit f523700dc4

View File

@ -36,13 +36,15 @@ class Controller{
syncWith.game.startDate = this.game.startDate syncWith.game.startDate = this.game.startDate
this.syncWith = syncWith this.syncWith = syncWith
} }
this.startMainLoop() requestAnimationFrame(() => {
if(!this.multiplayer){ this.startMainLoop()
debugObj.controller = this if(!this.multiplayer){
if(debugObj.debug){ debugObj.controller = this
debugObj.debug.updateStatus() if(debugObj.debug){
debugObj.debug.updateStatus()
}
} }
} })
} }
startMainLoop(){ startMainLoop(){
this.mainLoopStarted = false this.mainLoopStarted = false