phaser/src/tilemaps/components/HasTileAtWorldXY.js

28 lines
918 B
JavaScript
Raw Normal View History

var HasTileAt = require('./HasTileAt');
var WorldToTileX = require('./WorldToTileX');
var WorldToTileY = require('./WorldToTileY');
2017-11-27 13:33:30 +00:00
/**
* Checks if there is a tile at the given location (in world 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.HasTileAtWorldXY
* @since 3.0.0
*
2017-11-27 13:33:30 +00:00
* @param {number} worldX - [description]
* @param {number} worldY - [description]
2018-02-08 01:08:59 +00:00
* @param {Phaser.Cameras.Scene2D.Camera} [camera=main camera] - [description]
* @param {Phaser.Tilemaps.LayerData} layer - [description]
*
2017-11-27 13:33:30 +00:00
* @return {boolean}
*/
var HasTileAtWorldXY = function (worldX, worldY, camera, layer)
{
var tileX = WorldToTileX(worldX, true, camera, layer);
var tileY = WorldToTileY(worldY, true, camera, layer);
return HasTileAt(tileX, tileY, layer);
};
module.exports = HasTileAtWorldXY;