var config = { type: Phaser.AUTO, backgroundColor: '#2dab2d', scale: { parent: 'phaser-example', mode: Phaser.Scale.FIT, autoCenter: Phaser.Scale.CENTER_BOTH, width: 800, height: 600 }, scene: { preload: preload, create: create } }; var game = new Phaser.Game(config); function preload () { this.load.setBaseURL('https://cdn.phaserfiles.com/v355'); this.load.image('pic', 'assets/pics/zero-two.png'); } function create () { this.add.image(0, 0, 'pic').setOrigin(0); }
Scan to open on your mobile device
var config = { type: Phaser.AUTO, backgroundColor: '#2dab2d', scale: { parent: 'phaser-example', mode: Phaser.Scale.FIT, autoCenter: Phaser.Scale.CENTER_BOTH, width: 800, height: 600 }, scene: { preload: preload, create: create } }; var game = new Phaser.Game(config); function preload () { this.load.setBaseURL('https://cdn.phaserfiles.com/v355'); this.load.image('pic', 'assets/pics/zero-two.png'); } function create () { this.add.image(0, 0, 'pic').setOrigin(0); }