phaser/src/geom/rectangle/CenterOn.js

24 lines
521 B
JavaScript
Raw Normal View History

2017-10-13 13:11:54 +00:00
// Centers this Rectangle so that the center coordinates match the given x and y values.
2016-12-20 17:07:16 +00:00
/**
2017-10-13 13:11:54 +00:00
* [description]
*
* @function Phaser.Geom.Rectangle.CenterOn
* @since 3.0.0
*
* @param {Phaser.Geom.Rectangle} rect - [description]
* @param {number} x - [description]
* @param {number} y - [description]
*
* @return {Phaser.Geom.Rectangle} [description]
*/
2016-12-20 17:07:16 +00:00
var CenterOn = function (rect, x, y)
{
rect.x = x - (rect.width / 2);
rect.y = y - (rect.height / 2);
return rect;
};
module.exports = CenterOn;