UNPKG

phaser4-rex-plugins

Version:
24 lines (21 loc) 851 B
/** * @author Richard Davey <rich@photonstorm.com> * @copyright 2019 Photon Storm Ltd. * @license {@link https://opensource.org/licenses/MIT|MIT License} */ /** * Determines if the two objects (either Rectangles or Rectangle-like) have the same width and height values under strict equality. * * @function Phaser.Geom.Rectangle.SameDimensions * @since 3.15.0 * * @param {Phaser.Geom.Rectangle} rect - The first Rectangle object. * @param {Phaser.Geom.Rectangle} toCompare - The second Rectangle object. * * @return {boolean} `true` if the objects have equivalent values for the `width` and `height` properties, otherwise `false`. */ var SameDimensions = function (rect, toCompare) { return (rect.width === toCompare.width && rect.height === toCompare.height); }; export default SameDimensions;