2018-02-12 16:01:20 +00:00
|
|
|
/**
|
|
|
|
* @author Richard Davey <rich@photonstorm.com>
|
|
|
|
* @copyright 2018 Photon Storm Ltd.
|
|
|
|
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
|
|
|
|
*/
|
|
|
|
|
2017-11-27 13:33:30 +00:00
|
|
|
/**
|
|
|
|
* Checks if the given tile coordinates are within the bounds of the layer.
|
|
|
|
*
|
2018-02-08 01:08:59 +00:00
|
|
|
* @function Phaser.Tilemaps.Components.IsInLayerBounds
|
2018-04-16 14:25:22 +00:00
|
|
|
* @private
|
2018-02-08 01:08:59 +00:00
|
|
|
* @since 3.0.0
|
|
|
|
*
|
2017-11-29 21:07:56 +00:00
|
|
|
* @param {integer} tileX - [description]
|
|
|
|
* @param {integer} tileY - [description]
|
2018-02-08 02:02:37 +00:00
|
|
|
* @param {Phaser.Tilemaps.LayerData} layer - The Tilemap Layer to act upon.
|
2018-02-08 01:08:59 +00:00
|
|
|
*
|
2017-11-27 13:33:30 +00:00
|
|
|
* @return {boolean}
|
|
|
|
*/
|
2017-11-16 19:09:07 +00:00
|
|
|
var IsInLayerBounds = function (tileX, tileY, layer)
|
|
|
|
{
|
|
|
|
return (tileX >= 0 && tileX < layer.width && tileY >= 0 && tileY < layer.height);
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = IsInLayerBounds;
|