mirror of
https://github.com/simon987/Much-Assembly-Required.git
synced 2025-04-20 11:06:46 +00:00
[CodeFactor] Apply fixes
This commit is contained in:
parent
e378016c56
commit
bb097d31f0
2
Server/src/main/resources/static/js/mar.js
vendored
2
Server/src/main/resources/static/js/mar.js
vendored
@ -1328,7 +1328,7 @@ var Factory = (function (_super) {
|
|||||||
Factory.prototype.isAt = function (x, y) {
|
Factory.prototype.isAt = function (x, y) {
|
||||||
return (this.tileX === x || this.tileX + 1 === x) && (this.tileY + 1 === y || this.tileY === y);
|
return (this.tileX === x || this.tileX + 1 === x) && (this.tileY + 1 === y || this.tileY === y);
|
||||||
};
|
};
|
||||||
;
|
|
||||||
return Factory;
|
return Factory;
|
||||||
}(GameObject));
|
}(GameObject));
|
||||||
var RadioTower = (function (_super) {
|
var RadioTower = (function (_super) {
|
||||||
|
@ -702,7 +702,7 @@ Phaser.Plugin.Isometric.Cube.intersects = function (a, b) {
|
|||||||
}
|
}
|
||||||
return !(a.frontX < b.x || a.frontY < b.y || a.x > b.frontX || a.y > b.frontY || a.z > b.top || a.top < b.z);
|
return !(a.frontX < b.x || a.frontY < b.y || a.x > b.frontX || a.y > b.frontY || a.z > b.top || a.top < b.z);
|
||||||
};
|
};
|
||||||
;/**
|
/**
|
||||||
* @class Phaser.Plugin.Isometric.IsoSprite
|
* @class Phaser.Plugin.Isometric.IsoSprite
|
||||||
*
|
*
|
||||||
* @classdesc
|
* @classdesc
|
||||||
@ -1056,7 +1056,7 @@ Phaser.Utils.Debug.prototype.isoSprite = function (sprite, color, filled) {
|
|||||||
this.stop();
|
this.stop();
|
||||||
|
|
||||||
};
|
};
|
||||||
;/**
|
/**
|
||||||
* Octree Constructor
|
* Octree Constructor
|
||||||
*
|
*
|
||||||
* @class Phaser.Plugin.Isometric.Octree
|
* @class Phaser.Plugin.Isometric.Octree
|
||||||
@ -1451,7 +1451,7 @@ Phaser.Utils.Debug.prototype.octree = function (octree, color) {
|
|||||||
this.stop();
|
this.stop();
|
||||||
|
|
||||||
};
|
};
|
||||||
;/**
|
/**
|
||||||
* @class Phaser.Plugin.Isometric.Point3
|
* @class Phaser.Plugin.Isometric.Point3
|
||||||
*
|
*
|
||||||
* @classdesc
|
* @classdesc
|
||||||
@ -1750,7 +1750,7 @@ Phaser.Plugin.Isometric.Point3.equals = function (a, b) {
|
|||||||
return (a.x === b.x && a.y === b.y && a.z === b.z);
|
return (a.x === b.x && a.y === b.y && a.z === b.z);
|
||||||
|
|
||||||
};
|
};
|
||||||
;/**
|
/**
|
||||||
* @class Phaser.Plugin.Isometric.Projector
|
* @class Phaser.Plugin.Isometric.Projector
|
||||||
*
|
*
|
||||||
* @classdesc
|
* @classdesc
|
||||||
@ -1986,7 +1986,7 @@ Object.defineProperty(Phaser.Plugin.Isometric.Projector.prototype, "projectionAn
|
|||||||
}
|
}
|
||||||
|
|
||||||
});
|
});
|
||||||
;/**
|
/**
|
||||||
* @class Phaser.Plugin.Isometric.Body
|
* @class Phaser.Plugin.Isometric.Body
|
||||||
*
|
*
|
||||||
* @classdesc
|
* @classdesc
|
||||||
@ -3126,7 +3126,7 @@ Phaser.Utils.Debug.prototype.bodyInfo = (function (_super) {
|
|||||||
};
|
};
|
||||||
|
|
||||||
})(Phaser.Utils.Debug.prototype.bodyInfo);
|
})(Phaser.Utils.Debug.prototype.bodyInfo);
|
||||||
;/**
|
/**
|
||||||
* IsoArcade Physics constructor.
|
* IsoArcade Physics constructor.
|
||||||
*
|
*
|
||||||
* @class Phaser.Plugin.Isometric.Arcade
|
* @class Phaser.Plugin.Isometric.Arcade
|
||||||
|
Loading…
x
Reference in New Issue
Block a user