/** * @author Richard Davey * @copyright 2018 Photon Storm Ltd. * @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License} */ /** * [description] * * @function Phaser.Geom.Rectangle.Floor * @since 3.0.0 * * @param {Phaser.Geom.Rectangle} rect - [description] * * @return {Phaser.Geom.Rectangle} [description] */ var Floor = function (rect) { rect.x = Math.floor(rect.x); rect.y = Math.floor(rect.y); return rect; }; module.exports = Floor;