UNPKG

phaser

Version:

A fast, free and fun HTML5 Game Framework for Desktop and Mobile web browsers.

24 lines (20 loc) 533 B
/** * @author Richard Davey <rich@photonstorm.com> * @author @samme * @copyright 2020 Photon Storm Ltd. * @license {@link https://opensource.org/licenses/MIT|MIT License} */ var FloatBetween = require('../FloatBetween'); /** * Returns a random angle in the range [-pi, pi]. * * @function Phaser.Math.Angle.Random * @since 3.23.0 * * @return {number} The angle, in radians. */ var Random = function () { return FloatBetween(-Math.PI, Math.PI); }; module.exports = Random;