phaser/v3/src/gameobjects/tilemap/components/IsInLayerBounds.js

15 lines
413 B
JavaScript
Raw Normal View History

2017-11-27 13:33:30 +00:00
/**
* Checks if the given tile coordinates are within the bounds of the layer.
*
* @param {number} tileX - [description]
* @param {number} tileY - [description]
* @param {LayerData} layer - [description]
* @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;