mirror of
https://github.com/photonstorm/phaser
synced 2024-12-26 13:03:36 +00:00
17 lines
399 B
JavaScript
17 lines
399 B
JavaScript
/**
|
|
* [description]
|
|
*
|
|
* @function Phaser.Geom.Rectangle.CopyFrom
|
|
* @since 3.0.0
|
|
*
|
|
* @param {Phaser.Geom.Rectangle} source - [description]
|
|
* @param {Phaser.Geom.Rectangle} dest - [description]
|
|
*
|
|
* @return {Phaser.Geom.Rectangle} [description]
|
|
*/
|
|
var CopyFrom = function (source, dest)
|
|
{
|
|
return dest.setTo(source.x, source.y, source.width, source.height);
|
|
};
|
|
|
|
module.exports = CopyFrom;
|