Build games as easily as you play them — join the Phaser Beam waitlist for Early Access.
var config = { type: Phaser.AUTO, width: 800, height: 600, parent: 'phaser-example', pixelArt: true, scene: { preload: preload, create: create, pack: { files: [ { type: 'image', key: 'bear', url: 'assets/pics/alex-bear.png' } ] } } }; var game = new Phaser.Game(config); function preload () { this.load.setBaseURL('https://cdn.phaserfiles.com/v355'); this.add.image(400, 300, 'bear').setScale(2); var progress = this.add.graphics(); this.load.on('fileprogress', function (file, value) { if (file.key === 'goldrunner') { progress.clear(); progress.fillStyle(0xffffff, 0.4); progress.fillRect(450, 500 - (value * 400), 200, value * 400); } }); this.load.on('complete', function () { progress.destroy(); }); this.load.audio('goldrunner', 'assets/audio/Scyphe-Goldrunner_(Maccie_Pimp_Me Up_Remix).mp3'); } function create () { var music = this.sound.add('goldrunner'); music.play(); }
var config = {
type: Phaser.AUTO,
width: 800,
height: 600,
parent: 'phaser-example',
pixelArt: true,
scene: {
preload: preload,
create: create,
pack: {
files: [
{ type: 'image', key: 'bear', url: 'assets/pics/alex-bear.png' }
]
}
}
};
var game = new Phaser.Game(config);
function preload ()
{
this.load.setBaseURL('https://cdn.phaserfiles.com/v355');
this.add.image(400, 300, 'bear').setScale(2);
var progress = this.add.graphics();
this.load.on('fileprogress', function (file, value) {
if (file.key === 'goldrunner')
{
progress.clear();
progress.fillStyle(0xffffff, 0.4);
progress.fillRect(450, 500 - (value * 400), 200, value * 400);
}
});
this.load.on('complete', function () {
progress.destroy();
});
this.load.audio('goldrunner', 'assets/audio/Scyphe-Goldrunner_(Maccie_Pimp_Me Up_Remix).mp3');
}
function create ()
{
var music = this.sound.add('goldrunner');
music.play();
}