phaser/src/tilemaps/components/HasTileAt.js

31 lines
763 B
JavaScript
Raw Normal View History

2017-11-16 19:09:07 +00:00
var IsInLayerBounds = require('./IsInLayerBounds');
2017-11-27 13:33:30 +00:00
/**
* Checks if there is a tile at the given location (in tile coordinates) in the given layer. Returns
* false if there is no tile or if the tile at that location has an index of -1.
*
2018-02-08 01:08:59 +00:00
* @function Phaser.Tilemaps.Components.HasTileAt
* @since 3.0.0
*
* @param {integer} tileX - [description]
* @param {integer} tileY - [description]
2018-02-08 01:08:59 +00:00
* @param {Phaser.Tilemaps.LayerData} layer - [description]
*
2017-11-27 13:33:30 +00:00
* @return {boolean}
*/
var HasTileAt = function (tileX, tileY, layer)
{
2017-11-16 19:09:07 +00:00
if (IsInLayerBounds(tileX, tileY, layer))
{
var tile = layer.data[tileY][tileX];
return (tile !== null && tile.index > -1);
}
else
{
return false;
}
};
module.exports = HasTileAt;