Added new dist files!

This commit is contained in:
lewster32
2014-08-28 13:30:46 +01:00
parent 190d3bbf3e
commit cd02a3faf6
2 changed files with 6 additions and 3 deletions
+4 -1
View File
@@ -1831,7 +1831,7 @@ Phaser.Plugin.Isometric.Projector.prototype = {
* @method Phaser.Plugin.Isometric.Projector#unproject
* @param {Phaser.Plugin.Isometric.Point} point - The Point to project from.
* @param {Phaser.Point3} out - The Point3 to project to.
* @param {number} z - Specified z-plane to project to.
* @param {number} [z] - Specified z-plane to project to.
* @return {Phaser.Point3} The transformed Point3.
*/
unproject: function (point, out, z) {
@@ -1839,6 +1839,9 @@ Phaser.Plugin.Isometric.Projector.prototype = {
out = new Phaser.Point3();
}
z = z || 0;
var x = point.x - (this.game.world.width * this.anchor.x);
var y = point.y - (this.game.world.height * this.anchor.y) + z;
File diff suppressed because one or more lines are too long