Build games as easily as you play them — join the Phaser Beam waitlist for Early Access.
var config = { type: Phaser.AUTO, parent: 'phaser-example', width: 800, height: 600, scene: { preload: preload, create: create, plugins: [ 'Loader' ], map: { 'load': 'load', 'add': 'add' } } }; var game = new Phaser.Game(config); function preload () { this.load.setBaseURL('https://cdn.phaserfiles.com/v355'); this.load.image('face', 'assets/pics/bw-face.png'); } function create () { console.log(this); this.add.image(400, 300, 'face'); }
var config = {
type: Phaser.AUTO,
parent: 'phaser-example',
width: 800,
height: 600,
scene: {
preload: preload,
create: create,
plugins: [ 'Loader' ],
map: {
'load': 'load',
'add': 'add'
}
}
};
var game = new Phaser.Game(config);
function preload ()
{
this.load.setBaseURL('https://cdn.phaserfiles.com/v355');
this.load.image('face', 'assets/pics/bw-face.png');
}
function create ()
{
console.log(this);
this.add.image(400, 300, 'face');
}