Beta warning added.

This commit is contained in:
Richard Davey
2013-09-24 15:59:10 +01:00
parent 891369b197
commit e77dba402c
2 changed files with 6 additions and 1 deletions
+1 -1
View File
@@ -3,7 +3,7 @@
*/
var Phaser = Phaser || {
VERSION: '1.0.6',
VERSION: '1.0.7-beta',
GAMES: [],
AUTO: 0,
CANVAS: 1,
+5
View File
@@ -322,6 +322,11 @@ Phaser.Game.prototype = {
console.log('%cPhaser ' + Phaser.VERSION + ' initialized. Rendering to WebGL', 'color: #ffff33; background: #000000');
}
if (Phaser.VERSION.substr(-5) == '-beta')
{
console.warn('You are using a beta version of Phaser. Some things may not work.');
}
this.isRunning = true;
this._loadComplete = false;