Difference between revisions of "love.math.newRandomGenerator"
(Updated for state/seed changes) |
m |
||
Line 1: | Line 1: | ||
{{newin|[[0.9.0]]|090|type=function}} | {{newin|[[0.9.0]]|090|type=function}} | ||
− | Creates a new [[RandomGenerator]] | + | Creates a new [[RandomGenerator]] object which is completely independent of other RandomGenerator objects and random functions. |
== Function == | == Function == | ||
Line 39: | Line 39: | ||
* [[Constructs::RandomGenerator]] | * [[Constructs::RandomGenerator]] | ||
[[Category:Functions]] | [[Category:Functions]] | ||
− | {{#set:Description=Creates a new [[RandomGenerator]].}} | + | {{#set:Description=Creates a new [[RandomGenerator]] object.}} |
== Other Languages == | == Other Languages == | ||
{{i18n|love.graphics.newRandomGenerator}} | {{i18n|love.graphics.newRandomGenerator}} |
Revision as of 03:52, 31 August 2013
Available since LÖVE 0.9.0 |
This function is not supported in earlier versions. |
Creates a new RandomGenerator object which is completely independent of other RandomGenerator objects and random functions.
Contents
Function
Synopsis
rng = love.graphics.newRandomGenerator( )
Arguments
None
Returns
RandomGenerator rng
- A Random Number Generator object.
Function
Synopsis
rng = love.graphics.newRandomGenerator( state )
Arguments
number state
- The state ("seed") number to use for this instance of the object.
Returns
RandomGenerator rng
- A Random Number Generator object.
Function
Synopsis
rng = love.graphics.newRandomGenerator( low, high )
Arguments
number low
- The lower 32 bits of the state number to use for this instance of the object.
number high
- The higher 32 bits of the state number to use for this instance of the object.
Returns
RandomGenerator rng
- A Random Number Generator object.
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