var config = { type: Phaser.WEBGL, parent: 'phaser-example', width: 800, height: 600, backgroundColor: '#2d2d66', scene: { preload: preload, create: create, update: update, pack: { files: [ { type: 'scenePlugin', key: 'SpinePlugin', url: 'https://cdn.phaserfiles.com/v385/plugins/spine4.1/SpinePluginDebug.js', sceneKey: 'spine' } ] } } }; var controls; var game = new Phaser.Game(config); function preload () { this.load.setBaseURL('https://cdn.phaserfiles.com/v385'); this.load.image('logo', 'assets/sprites/phaser.png'); this.load.setPath('assets/spine/4.1/spineboy'); this.load.spine('boy', 'spineboy-pro.json', 'spineboy-pma.atlas', true); this.load.setPath('assets/spine/4.1/coin'); this.load.spine('coin', 'coin-pro.json', 'coin-pma.atlas'); } function create () { this.add.image(0, 0, 'logo').setOrigin(0); var spineBoy = this.add.spine(0, 0, 'boy', 'walk', true).setScale(0.5); var coin = this.add.spine(0, 0, 'coin', 'rotate', true).setScale(0.3); var container = this.add.spineContainer(400, 300, [ spineBoy, coin ]); this.tweens.add({ targets: container, angle: 360, duration: 6000, repeat: -1 }); var cursors = this.input.keyboard.createCursorKeys(); var controlConfig = { camera: this.cameras.main, left: cursors.left, right: cursors.right, up: cursors.up, down: cursors.down, acceleration: 0.06, drag: 0.0005, maxSpeed: 1.0 }; controls = new Phaser.Cameras.Controls.SmoothedKeyControl(controlConfig); } function update (time, delta) { controls.update(delta); }
Scan to open on your mobile device
var config = { type: Phaser.WEBGL, parent: 'phaser-example', width: 800, height: 600, backgroundColor: '#2d2d66', scene: { preload: preload, create: create, update: update, pack: { files: [ { type: 'scenePlugin', key: 'SpinePlugin', url: 'https://cdn.phaserfiles.com/v385/plugins/spine4.1/SpinePluginDebug.js', sceneKey: 'spine' } ] } } }; var controls; var game = new Phaser.Game(config); function preload () { this.load.setBaseURL('https://cdn.phaserfiles.com/v385'); this.load.image('logo', 'assets/sprites/phaser.png'); this.load.setPath('assets/spine/4.1/spineboy'); this.load.spine('boy', 'spineboy-pro.json', 'spineboy-pma.atlas', true); this.load.setPath('assets/spine/4.1/coin'); this.load.spine('coin', 'coin-pro.json', 'coin-pma.atlas'); } function create () { this.add.image(0, 0, 'logo').setOrigin(0); var spineBoy = this.add.spine(0, 0, 'boy', 'walk', true).setScale(0.5); var coin = this.add.spine(0, 0, 'coin', 'rotate', true).setScale(0.3); var container = this.add.spineContainer(400, 300, [ spineBoy, coin ]); this.tweens.add({ targets: container, angle: 360, duration: 6000, repeat: -1 }); var cursors = this.input.keyboard.createCursorKeys(); var controlConfig = { camera: this.cameras.main, left: cursors.left, right: cursors.right, up: cursors.up, down: cursors.down, acceleration: 0.06, drag: 0.0005, maxSpeed: 1.0 }; controls = new Phaser.Cameras.Controls.SmoothedKeyControl(controlConfig); } function update (time, delta) { controls.update(delta); }