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.
This commit is contained in:
photonstorm
2014-02-25 14:46:48 +00:00
parent fdde4cb7e6
commit 13c99f3491
22 changed files with 321 additions and 112 deletions
@@ -35,7 +35,7 @@ BasicGame.MainMenu.prototype = {
this.music.stop();
// And start the actual game
this.game.state.start('Game');
this.state.start('Game');
}