class Example extends Phaser.Scene
{
preload ()
{
this.load.setBaseURL('https://cdn.phaserfiles.com/v385');
// this.load.on('filecomplete', function (key, file) {
// this.add.image(400, 300, key);
// }, this);
this.load.image('taikodrummaster', 'assets/pics/taikodrummaster.jpg').on('filecomplete', this.addImage, this);
this.load.image('sukasuka-chtholly', 'assets/pics/sukasuka-chtholly.png');
}
addImage (key, file)
{
this.add.image(400, 300, key);
}
}
const config = {
type: Phaser.AUTO,
width: 800,
height: 600,
parent: 'phaser-example',
pixelArt: true,
scene: Example
};
const game = new Phaser.Game(config);
class Example extends Phaser.Scene
{
preload ()
{
this.load.setBaseURL('https://cdn.phaserfiles.com/v385');
// this.load.on('filecomplete', function (key, file) {
// this.add.image(400, 300, key);
// }, this);
this.load.image('taikodrummaster', 'assets/pics/taikodrummaster.jpg').on('filecomplete', this.addImage, this);
this.load.image('sukasuka-chtholly', 'assets/pics/sukasuka-chtholly.png');
}
addImage (key, file)
{
this.add.image(400, 300, key);
}
}
const config = {
type: Phaser.AUTO,
width: 800,
height: 600,
parent: 'phaser-example',
pixelArt: true,
scene: Example
};
const game = new Phaser.Game(config);