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-18 21:41:26 +00:00
|
|
|
var RemoveTileAt = require('./RemoveTileAt');
|
|
|
|
var WorldToTileX = require('./WorldToTileX');
|
|
|
|
var WorldToTileY = require('./WorldToTileY');
|
|
|
|
|
2017-11-27 13:33:30 +00:00
|
|
|
/**
|
|
|
|
* Removes the tile at the given world coordinates in the specified layer and updates the layer's
|
|
|
|
* collision information.
|
|
|
|
*
|
2018-02-08 01:08:59 +00:00
|
|
|
* @function Phaser.Tilemaps.Components.RemoveTileAtWorldXY
|
2018-04-16 14:25:22 +00:00
|
|
|
* @private
|
2018-02-08 01:08:59 +00:00
|
|
|
* @since 3.0.0
|
|
|
|
*
|
2018-03-20 15:11:33 +00:00
|
|
|
* @param {(integer|Phaser.Tilemaps.Tile)} tile - The index of this tile to set or a Tile object.
|
2017-11-27 13:33:30 +00:00
|
|
|
* @param {number} worldX - [description]
|
|
|
|
* @param {number} worldY - [description]
|
|
|
|
* @param {boolean} [replaceWithNull=true] - If true, this will replace the tile at the specified
|
|
|
|
* location with null instead of a Tile with an index of -1.
|
|
|
|
* @param {boolean} [recalculateFaces=true] - [description]
|
2018-02-08 01:08:59 +00:00
|
|
|
* @param {Phaser.Cameras.Scene2D.Camera} [camera=main camera] - [description]
|
2018-02-08 02:02:37 +00:00
|
|
|
* @param {Phaser.Tilemaps.LayerData} layer - The Tilemap Layer to act upon.
|
2018-03-20 15:11:33 +00:00
|
|
|
*
|
2018-02-08 01:08:59 +00:00
|
|
|
* @return {Phaser.Tilemaps.Tile} The Tile object that was removed.
|
2017-11-27 13:33:30 +00:00
|
|
|
*/
|
2017-11-22 01:18:34 +00:00
|
|
|
var RemoveTileAtWorldXY = function (worldX, worldY, replaceWithNull, recalculateFaces, camera, layer)
|
2017-11-18 21:41:26 +00:00
|
|
|
{
|
2017-11-25 13:08:06 +00:00
|
|
|
var tileX = WorldToTileX(worldX, true, camera, layer);
|
|
|
|
var tileY = WorldToTileY(worldY, true, camera, layer);
|
2017-11-25 13:06:14 +00:00
|
|
|
return RemoveTileAt(tileX, tileY, replaceWithNull, recalculateFaces, layer);
|
2017-11-18 21:41:26 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = RemoveTileAtWorldXY;
|