UNPKG

phaser

Version:

A fast, free and fun HTML5 Game Framework for Desktop and Mobile web browsers.

25 lines (22 loc) 590 B
/** * @author Richard Davey <rich@photonstorm.com> * @copyright 2018 Photon Storm Ltd. * @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License} */ /** * [description] * * @function Phaser.Geom.Point.Floor * @since 3.0.0 * * @generic {Phaser.Geom.Point} O - [point,$return] * * @param {Phaser.Geom.Point} point - [description] * * @return {Phaser.Geom.Point} [description] */ var Floor = function (point) { return point.setTo(Math.floor(point.x), Math.floor(point.y)); }; module.exports = Floor;