var config = { type: Phaser.WEBGL, parent: 'phaser-example', width: 1024, 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.atlas('cards', 'assets/atlas/cards.png', 'assets/atlas/cards.json'); } function create () { // Create a stack of random cards var frames = this.textures.get('cards').getFrameNames(); var x = 100; var y = 100; for (var i = 0; i < 64; i++) { var image = this.add.image(x, y, 'cards', Phaser.Math.RND.pick(frames)).setInteractive(); this.input.setDraggable(image); y += 6; } // A drop zone positioned at 600x300 with a circular drop zone 128px in radius var zone = this.add.zone(600, 300).setCircleDropZone(128); // Just a visual display of the drop zone var graphics = this.add.graphics(); graphics.lineStyle(2, 0xffff00); graphics.strokeCircle(zone.x, zone.y, zone.input.hitArea.radius); this.input.on('dragstart', function (pointer, gameObject) { this.children.bringToTop(gameObject); }, this); this.input.on('drag', function (pointer, gameObject, dragX, dragY) { gameObject.x = dragX; gameObject.y = dragY; }); this.input.on('dragenter', function (pointer, gameObject, dropZone) { graphics.clear(); graphics.lineStyle(2, 0x00ffff); graphics.strokeCircle(zone.x, zone.y, zone.input.hitArea.radius); }); this.input.on('dragleave', function (pointer, gameObject, dropZone) { graphics.clear(); graphics.lineStyle(2, 0xffff00); graphics.strokeCircle(zone.x, zone.y, zone.input.hitArea.radius); }); this.input.on('drop', function (pointer, gameObject, dropZone) { gameObject.x = dropZone.x; gameObject.y = dropZone.y; gameObject.input.enabled = false; }); this.input.on('dragend', function (pointer, gameObject, dropped) { if (!dropped) { gameObject.x = gameObject.input.dragStartX; gameObject.y = gameObject.input.dragStartY; } }); }
Scan to open on your mobile device
var config = { type: Phaser.WEBGL, parent: 'phaser-example', width: 1024, 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.atlas('cards', 'assets/atlas/cards.png', 'assets/atlas/cards.json'); } function create () { // Create a stack of random cards var frames = this.textures.get('cards').getFrameNames(); var x = 100; var y = 100; for (var i = 0; i < 64; i++) { var image = this.add.image(x, y, 'cards', Phaser.Math.RND.pick(frames)).setInteractive(); this.input.setDraggable(image); y += 6; } // A drop zone positioned at 600x300 with a circular drop zone 128px in radius var zone = this.add.zone(600, 300).setCircleDropZone(128); // Just a visual display of the drop zone var graphics = this.add.graphics(); graphics.lineStyle(2, 0xffff00); graphics.strokeCircle(zone.x, zone.y, zone.input.hitArea.radius); this.input.on('dragstart', function (pointer, gameObject) { this.children.bringToTop(gameObject); }, this); this.input.on('drag', function (pointer, gameObject, dragX, dragY) { gameObject.x = dragX; gameObject.y = dragY; }); this.input.on('dragenter', function (pointer, gameObject, dropZone) { graphics.clear(); graphics.lineStyle(2, 0x00ffff); graphics.strokeCircle(zone.x, zone.y, zone.input.hitArea.radius); }); this.input.on('dragleave', function (pointer, gameObject, dropZone) { graphics.clear(); graphics.lineStyle(2, 0xffff00); graphics.strokeCircle(zone.x, zone.y, zone.input.hitArea.radius); }); this.input.on('drop', function (pointer, gameObject, dropZone) { gameObject.x = dropZone.x; gameObject.y = dropZone.y; gameObject.input.enabled = false; }); this.input.on('dragend', function (pointer, gameObject, dropped) { if (!dropped) { gameObject.x = gameObject.input.dragStartX; gameObject.y = gameObject.input.dragStartY; } }); }