phaser/src/tilemaps/components/GetTileToWorldYFunction.js

39 lines
1 KiB
JavaScript
Raw Normal View History

/**
* @author Richard Davey <rich@photonstorm.com>
2022-02-28 14:29:51 +00:00
* @copyright 2022 Photon Storm Ltd.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
2020-11-23 15:29:08 +00:00
var CONST = require('../const/ORIENTATION_CONST');
var NOOP = require('../../utils/NOOP');
var StaggeredTileToWorldY = require('./StaggeredTileToWorldY');
var TileToWorldY = require('./TileToWorldY');
/**
* Gets the correct function to use to translate tiles, based on the map orientation.
*
* @function Phaser.Tilemaps.Components.GetTileToWorldYFunction
* @since 3.50.0
*
* @param {number} orientation - The Tilemap orientation constant.
*
2020-11-23 15:06:45 +00:00
* @return {function} The function to use to translate tiles for the given map type.
*/
var GetTileToWorldYFunction = function (orientation)
{
if (orientation === CONST.ORTHOGONAL)
{
return TileToWorldY;
}
else if (orientation === CONST.STAGGERED)
{
return StaggeredTileToWorldY;
}
else
{
return NOOP;
}
};
module.exports = GetTileToWorldYFunction;