Build games as easily as you play them — join the Phaser Beam waitlist for Early Access.
class Example extends Phaser.Scene { constructor () { super(); this.gingerbreads = []; } preload () { this.load.setBaseURL('https://cdn.phaserfiles.com/v385'); this.load.image('gingerbread', 'assets/sprites/gingerbread.png'); } create () { for (let i = 0; i < 32; i++) { const x = Phaser.Math.Between(0, 800); const y = Phaser.Math.Between(0, 600); this.gingerbreads.push(this.add.image(x, y, 'gingerbread')); } } update () { Phaser.Actions.Angle(this.gingerbreads, 1); } } 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();
this.gingerbreads = [];
}
preload ()
{
this.load.setBaseURL('https://cdn.phaserfiles.com/v385');
this.load.image('gingerbread', 'assets/sprites/gingerbread.png');
}
create ()
{
for (let i = 0; i < 32; i++)
{
const x = Phaser.Math.Between(0, 800);
const y = Phaser.Math.Between(0, 600);
this.gingerbreads.push(this.add.image(x, y, 'gingerbread'));
}
}
update ()
{
Phaser.Actions.Angle(this.gingerbreads, 1);
}
}
const config = {
type: Phaser.AUTO,
width: 800,
height: 600,
backgroundColor: '#2d2d2d',
parent: 'phaser-example',
scene: Example
};
const game = new Phaser.Game(config);