phaser/examples/wip/destroy state swap.js
photonstorm 13c99f3491 Phaser.StageScaleMode has been renamed to ScaleManager and moved from the system folder to the core folder. It's still available under game.scale.
If your game references the old Phaser.StageScaleMode consts like SHOW_ALL you need to update them to Phaser.ScaleManager, i.e. Phaser.ScaleManager.SHOW_ALL.
All of the Project Templates have been updated to reflect the above change.
2014-02-25 14:46:48 +00:00

36 lines
No EOL
643 B
JavaScript

var game = new Phaser.Game(800, 600, Phaser.CANVAS, 'phaser-example', { preload: preload, create: create, update: update, render: render });
function preload() {
game.load.spritesheet('mummy', 'assets/sprites/metalslug_mummy37x45.png', 37, 45, 18);
}
var mummy;
var anim;
function create() {
game.stage.backgroundColor = 0xff8855;
mummy = game.add.sprite(300, 200, 'mummy', 5);
mummy.animations.updateIfVisible = false;
anim = mummy.animations.add('walk');
anim.play(2, false);
// anim.play(2, true);
}
function update() {
}
function render() {
game.debug.renderText(anim.frame + ' / 17', 32, 32);
}