phaser/src/tilemaps/components/TileToWorldY.js

39 lines
1.1 KiB
JavaScript
Raw Normal View History

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-27 13:33:30 +00:00
/**
* Converts from tile Y coordinates (tile units) to world Y 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.TileToWorldY
* @since 3.0.0
*
* @param {integer} tileY - [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-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
*/
var TileToWorldY = function (tileY, camera, layer)
{
var tileHeight = layer.baseTileHeight;
var tilemapLayer = layer.tilemapLayer;
var layerWorldY = 0;
if (tilemapLayer)
{
if (camera === undefined) { camera = tilemapLayer.scene.cameras.main; }
layerWorldY = (tilemapLayer.y + camera.scrollY * (1 - tilemapLayer.scrollFactorY));
tileHeight *= tilemapLayer.scaleY;
}
return layerWorldY + tileY * tileHeight;
};
module.exports = TileToWorldY;