2018-02-12 16:01:20 +00:00
|
|
|
/**
|
|
|
|
* @author Richard Davey <rich@photonstorm.com>
|
2023-01-02 17:36:27 +00:00
|
|
|
* @copyright 2013-2023 Photon Storm Ltd.
|
2019-05-10 15:15:04 +00:00
|
|
|
* @license {@link https://opensource.org/licenses/MIT|MIT License}
|
2018-02-12 16:01:20 +00:00
|
|
|
*/
|
|
|
|
|
2017-11-18 21:41:26 +00:00
|
|
|
var PutTileAt = require('./PutTileAt');
|
2020-10-02 10:41:11 +00:00
|
|
|
var Vector2 = require('../../math/Vector2');
|
|
|
|
|
|
|
|
var point = new Vector2();
|
2017-11-17 13:58:33 +00:00
|
|
|
|
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.
|
|
|
|
*
|
2018-02-08 01:08:59 +00:00
|
|
|
* @function Phaser.Tilemaps.Components.PutTileAtWorldXY
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
2020-11-23 10:32:00 +00:00
|
|
|
* @param {(number|Phaser.Tilemaps.Tile)} tile - The index of this tile to set or a Tile object.
|
2018-09-28 13:32:36 +00:00
|
|
|
* @param {number} worldX - The x coordinate, in pixels.
|
|
|
|
* @param {number} worldY - The y coordinate, in pixels.
|
2020-11-23 10:48:24 +00:00
|
|
|
* @param {boolean} recalculateFaces - `true` if the faces data should be recalculated.
|
|
|
|
* @param {Phaser.Cameras.Scene2D.Camera} camera - The Camera to use when calculating the tile index from the world values.
|
2018-02-08 02:02:37 +00:00
|
|
|
* @param {Phaser.Tilemaps.LayerData} layer - The Tilemap Layer to act upon.
|
2020-10-02 10:41:11 +00:00
|
|
|
*
|
2018-02-08 01:08:59 +00:00
|
|
|
* @return {Phaser.Tilemaps.Tile} The Tile object that was created or added to this map.
|
2017-11-27 13:33:30 +00:00
|
|
|
*/
|
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
|
|
|
{
|
2020-10-02 10:41:11 +00:00
|
|
|
layer.tilemapLayer.worldToTileXY(worldX, worldY, true, point, camera, layer);
|
|
|
|
|
|
|
|
return PutTileAt(tile, point.x, point.y, recalculateFaces, layer);
|
2017-11-17 13:58:33 +00:00
|
|
|
};
|
|
|
|
|
2017-11-18 21:41:26 +00:00
|
|
|
module.exports = PutTileAtWorldXY;
|