Difference between revisions of "love.math.random"
m (I can make links, me) |
m (→See Also) |
||
Line 47: | Line 47: | ||
* [[parent::love.math]] | * [[parent::love.math]] | ||
* [[love.math.setRandomSeed]] | * [[love.math.setRandomSeed]] | ||
− | * [[love.math. | + | * [[love.math.randomNormal]] |
* [[love.math.newRandomGenerator]] | * [[love.math.newRandomGenerator]] | ||
[[Category:Functions]] | [[Category:Functions]] | ||
{{#set:Description=Get uniformly distributed pseudo-random number}} | {{#set:Description=Get uniformly distributed pseudo-random number}} | ||
+ | |||
== Other Languages == | == Other Languages == | ||
{{i18n|love.math.random}} | {{i18n|love.math.random}} |
Revision as of 13:43, 27 April 2019
Available since LÖVE 0.9.0 |
This function is not supported in earlier versions. |
Generates a pseudo-random number in a platform independent manner. The default love.run seeds this function at startup, so you generally don't need to seed it yourself.
Contents
Function
Get uniformly distributed pseudo-random real number within [0, 1].
Synopsis
number = love.math.random( )
Arguments
None.
Returns
number number
- The pseudo-random number.
Function
Get a uniformly distributed pseudo-random integer within [1, max].
Synopsis
number = love.math.random( max )
Arguments
number max
- The maximum possible value it should return.
Returns
number number
- The pseudo-random integer number.
Function
Get uniformly distributed pseudo-random integer within [min, max].
Synopsis
number = love.math.random( min, max )
Arguments
number min
- The minimum possible value it should return.
number max
- The maximum possible value it should return.
Returns
number number
- The pseudo-random integer number.
Examples
Generates a number between 1 and 100 (both inclusive).
function love.load()
randomNumber = love.math.random(1, 100)
end
See Also
Other Languages
Dansk –
Deutsch –
English –
Español –
Français –
Indonesia –
Italiano –
Lietuviškai –
Magyar –
Nederlands –
Polski –
Português –
Română –
Slovenský –
Suomi –
Svenska –
Türkçe –
Česky –
Ελληνικά –
Български –
Русский –
Српски –
Українська –
עברית –
ไทย –
日本語 –
正體中文 –
简体中文 –
Tiếng Việt –
한국어
More info