phaser/src/geom/rectangle/Floor.js

20 lines
337 B
JavaScript
Raw Normal View History

2017-10-13 13:11:54 +00:00
/**
* [description]
*
* @function Phaser.Geom.Rectangle.Floor
* @since 3.0.0
*
* @param {Phaser.Geom.Rectangle} rect - [description]
*
* @return {Phaser.Geom.Rectangle} [description]
*/
2016-12-20 17:07:16 +00:00
var Floor = function (rect)
{
rect.x = Math.floor(rect.x);
rect.y = Math.floor(rect.y);
return rect;
};
module.exports = Floor;