var config = {
type: Phaser.WEBGL,
parent: 'phaser-example',
pixelArt: true,
width: 800,
height: 600,
scene: {
preload: preload,
create: create
}
};
var game = new Phaser.Game(config);
function preload ()
{
this.load.setBaseURL('https://cdn.phaserfiles.com/v355');
this.load.image('chick', 'assets/sprites/budbrain_chick.png');
}
function create ()
{
var sprite = this.add.sprite(400, 300, 'chick').setScale(3);
var shape = new Phaser.Geom.Ellipse(33, 67, 66, 133);
sprite.setInteractive(shape, Phaser.Geom.Ellipse.Contains);
// Input Event listeners
sprite.on('pointerover', function () {
sprite.setTint(0x7878ff);
});
sprite.on('pointerout', function () {
sprite.clearTint();
});
}
var config = {
type: Phaser.WEBGL,
parent: 'phaser-example',
pixelArt: true,
width: 800,
height: 600,
scene: {
preload: preload,
create: create
}
};
var game = new Phaser.Game(config);
function preload ()
{
this.load.setBaseURL('https://cdn.phaserfiles.com/v355');
this.load.image('chick', 'assets/sprites/budbrain_chick.png');
}
function create ()
{
var sprite = this.add.sprite(400, 300, 'chick').setScale(3);
var shape = new Phaser.Geom.Ellipse(33, 67, 66, 133);
sprite.setInteractive(shape, Phaser.Geom.Ellipse.Contains);
// Input Event listeners
sprite.on('pointerover', function () {
sprite.setTint(0x7878ff);
});
sprite.on('pointerout', function () {
sprite.clearTint();
});
}