Difference between revisions of "love.math.setRandomSeed"
(Mention love.run calls setRandomSeed) |
m |
||
(One intermediate revision by one other user not shown) | |||
Line 1: | Line 1: | ||
{{newin|[[0.9.0]]|090|type=function}} | {{newin|[[0.9.0]]|090|type=function}} | ||
− | Sets the seed of the random number generator using the specified integer number. | + | Sets the seed of the random number generator using the specified integer number. This is called internally at startup, so you generally don't need to call it yourself. |
== Function == | == Function == | ||
=== Synopsis === | === Synopsis === | ||
Line 25: | Line 25: | ||
== Examples == | == Examples == | ||
=== Set a random seed === | === Set a random seed === | ||
− | <source lang="lua"> | + | <source lang="lua"> |
love.math.setRandomSeed(love.timer.getTime()) | love.math.setRandomSeed(love.timer.getTime()) | ||
</source> | </source> |
Latest revision as of 23:33, 4 May 2019
Available since LÖVE 0.9.0 |
This function is not supported in earlier versions. |
Sets the seed of the random number generator using the specified integer number. This is called internally at startup, so you generally don't need to call it yourself.
Contents
Function
Synopsis
love.math.setRandomSeed( seed )
Arguments
number seed
- The integer number with which you want to seed the randomization. Must be within the range of [0, 2^53 - 1].
Returns
Nothing.
Notes
Due to Lua's use of double-precision floating point numbers, integer values above 2^53 cannot be accurately represented. Use the other variant of the function if you want to use a larger number.
Function
Combines two 32-bit integer numbers into a 64-bit integer value and sets the seed of the random number generator using the value.
Synopsis
love.math.setRandomSeed( low, high )
Arguments
number low
- The lower 32 bits of the seed value. Must be within the range of [0, 2^32 - 1].
number high
- The higher 32 bits of the seed value. Must be within the range of [0, 2^32 - 1].
Returns
Nothing.
Examples
Set a random seed
love.math.setRandomSeed(love.timer.getTime())
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