class Example extends Phaser.Scene { player; cursors; preload () { this.load.setBaseURL('https://cdn.phaserfiles.com/v385'); this.load.image('block', 'assets/sprites/block.png'); } create () { this.cursors = this.input.keyboard.createCursorKeys(); this.player = this.physics.add.image(400, 300, 'block'); this.player.setCollideWorldBounds(true); } update () { this.player.setVelocity(0); if (this.cursors.left.isDown) { this.player.setVelocityX(-300); } else if (this.cursors.right.isDown) { this.player.setVelocityX(300); } if (this.cursors.up.isDown) { this.player.setVelocityY(-300); } else if (this.cursors.down.isDown) { this.player.setVelocityY(300); } } } const config = { type: Phaser.AUTO, parent: 'phaser-example', backgroundColor: '#0072bc', physics: { default: 'arcade', arcade: { debug: true } }, scene: Example }; const game = new Phaser.Game(config);
Scan to open on your mobile device
class Example extends Phaser.Scene { player; cursors; preload () { this.load.setBaseURL('https://cdn.phaserfiles.com/v385'); this.load.image('block', 'assets/sprites/block.png'); } create () { this.cursors = this.input.keyboard.createCursorKeys(); this.player = this.physics.add.image(400, 300, 'block'); this.player.setCollideWorldBounds(true); } update () { this.player.setVelocity(0); if (this.cursors.left.isDown) { this.player.setVelocityX(-300); } else if (this.cursors.right.isDown) { this.player.setVelocityX(300); } if (this.cursors.up.isDown) { this.player.setVelocityY(-300); } else if (this.cursors.down.isDown) { this.player.setVelocityY(300); } } } const config = { type: Phaser.AUTO, parent: 'phaser-example', backgroundColor: '#0072bc', physics: { default: 'arcade', arcade: { debug: true } }, scene: Example }; const game = new Phaser.Game(config);