Update Isometric.js

This commit is contained in:
Martijn van de Sande
2015-09-16 12:32:29 +02:00
parent ca0487d40a
commit 1bf1913005
+2 -2
View File
@@ -41,11 +41,11 @@
*
* @constructor
* @param {Phaser.Game} game The current game instance.
* @param {number} isometricType - the isometric projection anglye to use.
* @param {number} isometricType - the isometric projection angle to use.
*/
Phaser.Plugin.Isometric = function (game, parent, isometricType) {
isometricType = isometricType || Phaser.Plugin.Isometric.CLASSIC
isometricType = isometricType || Phaser.Plugin.Isometric.CLASSIC;
Phaser.Plugin.call(this, game, parent);
this.projector = new Phaser.Plugin.Isometric.Projector(this.game, isometricType);