2017-11-18 21:41:26 +00:00
|
|
|
var PutTileAt = require('./PutTileAt');
|
2017-11-17 13:58:33 +00:00
|
|
|
var WorldToTileX = require('./WorldToTileX');
|
|
|
|
var WorldToTileY = require('./WorldToTileY');
|
|
|
|
|
2017-11-27 13:33:30 +00:00
|
|
|
/**
|
|
|
|
* Puts a tile at the given world coordinates (pixels) in the specified layer. You can pass in either
|
|
|
|
* an index or a Tile object. If you pass in a Tile, all attributes will be copied over to the
|
|
|
|
* specified location. If you pass in an index, only the index at the specified location will be
|
|
|
|
* changed. Collision information will be recalculated at the specified location.
|
|
|
|
*
|
2017-11-29 21:07:56 +00:00
|
|
|
* @param {integer|Tile} tile - The index of this tile to set or a Tile object.
|
|
|
|
* @param {integer} worldX - [description]
|
|
|
|
* @param {integer} worldY - [description]
|
2017-11-27 13:33:30 +00:00
|
|
|
* @param {boolean} [recalculateFaces=true] - [description]
|
|
|
|
* @param {Camera} [camera=main camera] - [description]
|
|
|
|
* @param {LayerData} layer - [description]
|
|
|
|
* @return {Tile} The Tile object that was created or added to this map.
|
|
|
|
*/
|
2017-11-22 01:18:34 +00:00
|
|
|
var PutTileAtWorldXY = function (tile, worldX, worldY, recalculateFaces, camera, layer)
|
2017-11-17 13:58:33 +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 PutTileAt(tile, tileX, tileY, recalculateFaces, layer);
|
2017-11-17 13:58:33 +00:00
|
|
|
};
|
|
|
|
|
2017-11-18 21:41:26 +00:00
|
|
|
module.exports = PutTileAtWorldXY;
|