Build games as easily as you play them — join the Phaser Beam waitlist for Early Access.
class Example extends Phaser.Scene { constructor () { super(); } preload () { this.load.setBaseURL('https://cdn.phaserfiles.com/v385'); this.load.image('bg', 'assets/skies/deepblue.png'); this.load.atlas('cards', 'assets/atlas/cards.png', 'assets/atlas/cards.json'); } create () { this.add.image(400, 300, 'bg'); const frames = this.textures.get('cards').getFrameNames(); const cards = []; // Create 8 cards and push them into an array for (var i = 0; i < 8; i++) { cards.push(this.add.sprite(0, 0, 'cards', Phaser.Math.RND.pick(frames))); } // The cards are 140x190 in size // Let's lay them out in a 4x2 grid, with 10px spacing between them Phaser.Actions.GridAlign(cards, { width: 4, height: 2, cellWidth: 150, cellHeight: 200, x: 100, y: 100 }); } } const config = { type: Phaser.AUTO, width: 800, height: 600, backgroundColor: '#2d2d2d', parent: 'phaser-example', scene: Example }; const game = new Phaser.Game(config);
class Example extends Phaser.Scene
{
constructor ()
{
super();
}
preload ()
{
this.load.setBaseURL('https://cdn.phaserfiles.com/v385');
this.load.image('bg', 'assets/skies/deepblue.png');
this.load.atlas('cards', 'assets/atlas/cards.png', 'assets/atlas/cards.json');
}
create ()
{
this.add.image(400, 300, 'bg');
const frames = this.textures.get('cards').getFrameNames();
const cards = [];
// Create 8 cards and push them into an array
for (var i = 0; i < 8; i++)
{
cards.push(this.add.sprite(0, 0, 'cards', Phaser.Math.RND.pick(frames)));
}
// The cards are 140x190 in size
// Let's lay them out in a 4x2 grid, with 10px spacing between them
Phaser.Actions.GridAlign(cards, {
width: 4,
height: 2,
cellWidth: 150,
cellHeight: 200,
x: 100,
y: 100
});
}
}
const config = {
type: Phaser.AUTO,
width: 800,
height: 600,
backgroundColor: '#2d2d2d',
parent: 'phaser-example',
scene: Example
};
const game = new Phaser.Game(config);