phaser/src/tilemaps/components/GetTileAt.js

45 lines
1.2 KiB
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
/**
* Gets a tile at the given tile coordinates from the given layer.
*
2018-02-08 01:08:59 +00:00
* @function Phaser.Tilemaps.Components.GetTileAt
* @since 3.0.0
*
* @param {integer} tileX - X position to get the tile from (given in tile units, not pixels).
* @param {integer} tileY - Y position to get the tile from (given in tile units, not pixels).
2017-11-27 13:33:30 +00:00
* @param {boolean} [nonNull=false] - If true getTile won't return null for empty tiles, but a Tile
* object with an index of -1.
2018-02-08 01:08:59 +00:00
* @param {Phaser.Tilemaps.LayerData} layer - [description]
*
* @return {Phaser.Tilemaps.Tile} The tile at the given coordinates or null if no tile was found or the coordinates
2017-11-27 13:33:30 +00:00
* were invalid.
*/
2017-11-16 19:09:07 +00:00
var GetTileAt = function (tileX, tileY, nonNull, layer)
{
if (nonNull === undefined) { nonNull = false; }
2017-11-16 19:09:07 +00:00
if (IsInLayerBounds(tileX, tileY, layer))
{
var tile = layer.data[tileY][tileX];
2017-11-16 19:09:07 +00:00
if (tile === null)
{
return null;
}
else if (tile.index === -1)
{
return nonNull ? tile : null;
}
else
{
return tile;
}
}
else
{
return null;
}
};
module.exports = GetTileAt;