voglio utilizzare più new Phaser.Game
istanze con Phaser.io ma tutto quando creo un secondo oggetto Phaser.Game ottengo il seguente errore WebGL: INVALID_OPERATION: uniform2f: location not for current program
phaser.io più istanze phaser.game
Questo è l'utente HTML codice che
<div id="player1Holder"></div>
<div id="player2Holder"></div>
Questo è l'utente codice JavaScript ho
new Phaser.Game(700, 850, Phaser.AUTO, 'player1Holder');
new Phaser.Game(700, 850, Phaser.AUTO, 'player2Holder');
Grazie, sono passato a Phaser.CANVAS in entrambe le istanze e ora funziona! –