phaser
Version:
A fast, free and fun HTML5 Game Framework for Desktop and Mobile web browsers.
32 lines (27 loc) • 812 B
JavaScript
/**
* @author Richard Davey <rich@photonstorm.com>
* @copyright 2018 Photon Storm Ltd.
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
*/
// Centers this Rectangle so that the center coordinates match the given x and y values.
/**
* [description]
*
* @function Phaser.Geom.Rectangle.CenterOn
* @since 3.0.0
*
* @generic {Phaser.Geom.Rectangle} O - [rect,$return]
*
* @param {Phaser.Geom.Rectangle} rect - [description]
* @param {number} x - [description]
* @param {number} y - [description]
*
* @return {Phaser.Geom.Rectangle} [description]
*/
var CenterOn = function (rect, x, y)
{
rect.x = x - (rect.width / 2);
rect.y = y - (rect.height / 2);
return rect;
};
module.exports = CenterOn;