2018-09-21 11:32:17 +00:00
<?xml version="1.0" encoding="UTF-8" ?>
2020-01-26 15:01:49 +00:00
<class name= "RandomNumberGenerator" inherits= "Reference" version= "3.2" >
2018-09-21 11:32:17 +00:00
<brief_description >
2019-04-02 09:38:03 +00:00
A class for generating pseudo-random numbers.
2018-09-21 11:32:17 +00:00
</brief_description>
<description >
2019-06-21 23:04:47 +00:00
RandomNumberGenerator is a class for generating pseudo-random numbers. It currently uses [url=http://www.pcg-random.org/]PCG32[/url].
[b]Note:[/b] The underlying algorithm is an implementation detail. As a result, it should not be depended upon for reproducible random streams across Godot versions.
2019-06-29 21:59:22 +00:00
To generate a random float number (within a given range) based on a time-dependant seed:
[codeblock]
var rng = RandomNumberGenerator.new()
func _ready():
rng.randomize()
var my_random_number = rng.randf_range(-10.0, 10.0)
[/codeblock]
2018-09-21 11:32:17 +00:00
</description>
<tutorials >
</tutorials>
<methods >
2018-12-13 14:12:25 +00:00
<method name= "randf" >
<return type= "float" >
</return>
<description >
2019-06-21 23:04:47 +00:00
Generates a pseudo-random float between [code]0.0[/code] and [code]1.0[/code] (inclusive).
2018-12-13 14:12:25 +00:00
</description>
</method>
2018-12-03 14:43:14 +00:00
<method name= "randf_range" >
2018-11-13 10:06:50 +00:00
<return type= "float" >
2018-09-21 11:32:17 +00:00
</return>
2018-11-13 10:06:50 +00:00
<argument index= "0" name= "from" type= "float" >
</argument>
<argument index= "1" name= "to" type= "float" >
</argument>
2018-09-21 11:32:17 +00:00
<description >
2019-06-21 23:04:47 +00:00
Generates a pseudo-random float between [code]from[/code] and [code]to[/code] (inclusive).
2018-09-21 11:32:17 +00:00
</description>
</method>
2019-03-14 10:53:08 +00:00
<method name= "randfn" >
<return type= "float" >
</return>
<argument index= "0" name= "mean" type= "float" default= "0.0" >
</argument>
<argument index= "1" name= "deviation" type= "float" default= "1.0" >
</argument>
<description >
2019-06-21 23:04:47 +00:00
Generates a [url=https://en.wikipedia.org/wiki/Normal_distribution]normally-distributed[/url] pseudo-random number, using Box-Muller transform with the specified [code]mean[/code] and a standard [code]deviation[/code]. This is also called Gaussian distribution.
2019-03-14 10:53:08 +00:00
</description>
</method>
2018-12-13 14:12:25 +00:00
<method name= "randi" >
<return type= "int" >
</return>
<description >
2019-06-21 23:04:47 +00:00
Generates a pseudo-random 32-bit unsigned integer between [code]0[/code] and [code]4294967295[/code] (inclusive).
2018-12-13 14:12:25 +00:00
</description>
</method>
2018-12-03 14:43:14 +00:00
<method name= "randi_range" >
<return type= "int" >
</return>
<argument index= "0" name= "from" type= "int" >
</argument>
<argument index= "1" name= "to" type= "int" >
</argument>
<description >
2019-06-21 23:04:47 +00:00
Generates a pseudo-random 32-bit signed integer between [code]from[/code] and [code]to[/code] (inclusive).
2018-12-03 14:43:14 +00:00
</description>
</method>
2018-09-21 11:32:17 +00:00
<method name= "randomize" >
<return type= "void" >
</return>
<description >
2018-11-13 10:06:50 +00:00
Setups a time-based seed to generator.
2018-09-21 11:32:17 +00:00
</description>
</method>
</methods>
<members >
2019-06-29 10:38:01 +00:00
<member name= "seed" type= "int" setter= "set_seed" getter= "get_seed" default= "-6398989897141750821" >
2019-02-18 08:45:10 +00:00
The seed used by the random number generator. A given seed will give a reproducible sequence of pseudo-random numbers.
2019-04-02 09:38:03 +00:00
[b]Note:[/b] The RNG does not have an avalanche effect, and can output similar random streams given similar seeds. Consider using a hash function to improve your seed quality if they're sourced externally.
2018-09-21 11:32:17 +00:00
</member>
</members>
<constants >
</constants>
</class>