arcade-physics
Version:
Use Arcade Physics without Phaser.
16 lines • 591 B
TypeScript
export default Random;
/**
* Returns a random point within a Rectangle.
*
* @function Phaser.Geom.Rectangle.Random
* @since 3.0.0
*
* @generic {Phaser.Geom.Point} O - [out,$return]
*
* @param {Phaser.Geom.Rectangle} rect - The Rectangle to return a point from.
* @param {Phaser.Geom.Point} out - The object to update with the point's coordinates.
*
* @return {Phaser.Geom.Point} The modified `out` object, or a new Point if none was provided.
*/
declare function Random(rect: Phaser.Geom.Rectangle, out: Phaser.Geom.Point): Phaser.Geom.Point;
//# sourceMappingURL=Random.d.ts.map