Update dist files

This commit is contained in:
Pierre
2014-09-24 11:50:13 +02:00
parent e1e86f6943
commit 8532f655f3
2 changed files with 5 additions and 5 deletions
+3 -3
View File
@@ -68,10 +68,10 @@ Phaser.Plugin.Isometric.ISOSPRITE = 'isosprite';
Phaser.Plugin.Isometric.ISOARCADE = 'isoarcade';
;/**
* @class Phaser.Plugin.Isometric.Cube
*
*
* @classdesc
* Creates a new Cube object with the bottom-back corner specified by the x, y and z parameters, with the specified breadth (widthX), depth (widthY) and height parameters. If you call this function without parameters, a Cube with x, y, z, breadth, depth and height properties set to 0 is created.
*
*
* @constructor
* @param {number} x - The x coordinate of the bottom-back corner of the Cube.
* @param {number} y - The y coordinate of the bottom-back corner of the Cube.
@@ -648,7 +648,7 @@ Phaser.Plugin.Isometric.Cube.contains = function (a, x, y, z) {
* @return {boolean} A value of true if the Cube object contains the specified point; otherwise false.
*/
Phaser.Plugin.Isometric.Cube.containsXY = function (a, x, y) {
if (a.widthX <= 0 || a.widthY <= 0 || a.height <= 0) {
if (a.widthX <= 0 || a.widthY <= 0) {
return false;
}
File diff suppressed because one or more lines are too long