2018-02-12 16:01:20 +00:00
|
|
|
/**
|
|
|
|
* @author Richard Davey <rich@photonstorm.com>
|
2019-01-15 16:20:22 +00:00
|
|
|
* @copyright 2019 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-27 13:33:30 +00:00
|
|
|
/**
|
2017-11-30 15:22:54 +00:00
|
|
|
* Converts from tile X coordinates (tile units) to world X coordinates (pixels), factoring in the
|
|
|
|
* layer's position, scale and scroll.
|
2017-11-27 13:33:30 +00:00
|
|
|
*
|
2018-02-08 01:08:59 +00:00
|
|
|
* @function Phaser.Tilemaps.Components.TileToWorldX
|
2018-04-16 14:25:22 +00:00
|
|
|
* @private
|
2018-02-08 01:08:59 +00:00
|
|
|
* @since 3.0.0
|
|
|
|
*
|
2018-09-28 13:32:36 +00:00
|
|
|
* @param {integer} tileX - The x coordinate, in tiles, not pixels.
|
|
|
|
* @param {Phaser.Cameras.Scene2D.Camera} [camera=main 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.
|
2018-02-08 01:08:59 +00:00
|
|
|
*
|
2018-02-07 23:27:01 +00:00
|
|
|
* @return {number}
|
2017-11-27 13:33:30 +00:00
|
|
|
*/
|
2017-11-26 13:55:44 +00:00
|
|
|
var TileToWorldX = function (tileX, camera, layer)
|
|
|
|
{
|
2017-12-01 19:25:48 +00:00
|
|
|
var tileWidth = layer.baseTileWidth;
|
2017-11-26 13:55:44 +00:00
|
|
|
var tilemapLayer = layer.tilemapLayer;
|
|
|
|
var layerWorldX = 0;
|
|
|
|
|
|
|
|
if (tilemapLayer)
|
|
|
|
{
|
|
|
|
if (camera === undefined) { camera = tilemapLayer.scene.cameras.main; }
|
|
|
|
|
2017-11-30 15:22:54 +00:00
|
|
|
layerWorldX = tilemapLayer.x + camera.scrollX * (1 - tilemapLayer.scrollFactorX);
|
2017-11-26 13:55:44 +00:00
|
|
|
|
|
|
|
tileWidth *= tilemapLayer.scaleX;
|
|
|
|
}
|
|
|
|
|
|
|
|
return layerWorldX + tileX * tileWidth;
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = TileToWorldX;
|