mirror of
https://github.com/photonstorm/phaser
synced 2024-12-23 19:43:28 +00:00
36 lines
1.6 KiB
JavaScript
36 lines
1.6 KiB
JavaScript
/**
|
|
* @author Richard Davey <rich@photonstorm.com>
|
|
* @copyright 2020 Photon Storm Ltd.
|
|
* @license {@link https://opensource.org/licenses/MIT|MIT License}
|
|
*/
|
|
|
|
var PutTileAt = require('./PutTileAt');
|
|
|
|
/**
|
|
* 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.
|
|
*
|
|
* @function Phaser.Tilemaps.Components.PutTileAtWorldXY
|
|
* @private
|
|
* @since 3.0.0
|
|
*
|
|
* @param {(integer|Phaser.Tilemaps.Tile)} tile - The index of this tile to set or a Tile object.
|
|
* @param {number} worldX - The x coordinate, in pixels.
|
|
* @param {number} worldY - The y coordinate, in pixels.
|
|
* @param {boolean} [recalculateFaces=true] - `true` if the faces data should be recalculated.
|
|
* @param {Phaser.Cameras.Scene2D.Camera} [camera=main camera] - The Camera to use when calculating the tile index from the world values.
|
|
* @param {Phaser.Tilemaps.LayerData} layer - The Tilemap Layer to act upon.
|
|
*
|
|
* @return {Phaser.Tilemaps.Tile} The Tile object that was created or added to this map.
|
|
*/
|
|
var PutTileAtWorldXY = function (tile, worldX, worldY, recalculateFaces, camera, layer)
|
|
{
|
|
var point = layer.tilemapLayer.worldToTileXY(worldX, worldY, true, undefined, camera);
|
|
var tileX = point.x;
|
|
var tileY = point.y;
|
|
return PutTileAt(tile, tileX, tileY, recalculateFaces, layer);
|
|
};
|
|
|
|
module.exports = PutTileAtWorldXY;
|