UNPKG

phaser

Version:

A fast, free and fun HTML5 Game Framework for Desktop and Mobile web browsers from the team at Phaser Studio Inc.

26 lines (23 loc) 760 B
/** * @author Richard Davey <rich@phaser.io> * @copyright 2013-2025 Phaser Studio Inc. * @license {@link https://opensource.org/licenses/MIT|MIT License} */ /** * Copy the values of one Rectangle to a destination Rectangle. * * @function Phaser.Geom.Rectangle.CopyFrom * @since 3.0.0 * * @generic {Phaser.Geom.Rectangle} O - [dest,$return] * * @param {Phaser.Geom.Rectangle} source - The source Rectangle to copy the values from. * @param {Phaser.Geom.Rectangle} dest - The destination Rectangle to copy the values to. * * @return {Phaser.Geom.Rectangle} The destination Rectangle. */ var CopyFrom = function (source, dest) { return dest.setTo(source.x, source.y, source.width, source.height); }; module.exports = CopyFrom;