class-description NEWS COMMUNITY STORE TUTORIALS SIGN UP LOGIN LOGOUT ROKOJORI NEWSLETTER SIGN UP LOGIN LOGOUT NEWS COMMUNITY STORE TUTORIALS TOGGLE FULLSCREEN VOLLBILD AN/AUS ObjectRefCounted RandomNumberGenerator
Provides methods for generating pseudo-random numbers.
RandomNumberGenerator is a class for generating pseudo-random numbers. It currently uses [url=https://www.pcg-random.org/]PCG32[/url].
Note: The underlying algorithm is an implementation detail and should not be depended upon.
To generate a random float number (within a given range) based on a time-dependent seed:
var rng = RandomNumberGenerator.new() func _ready(): var my_random_number = rng.randf_range(-10.0, 10.0)
set get int seed<>():int set get
Initializes the random number generator state based on the given seed value. A given seed will give a reproducible sequence of pseudo-random numbers.

Note: 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.
Note: Setting this property produces a side effect of changing the internal state, so make sure to initialize the seed before modifying the state:
Note: The default value of this property is pseudo-random, and changes when calling randomize. The 0 value documented here is a placeholder, and not the actual default seed.
var rng = RandomNumberGenerator.new() rng.seed = hash("Godot") rng.state = 100 # Restore to some previously saved state.
set get int state<>():int set get
The current state of the random number generator. Save and restore this property to restore the generator to a previous state:

var rng = RandomNumberGenerator.new() print(rng.randf()) var saved_state = rng.state # Store current state. print(rng.randf()) # Advance internal state. rng.state = saved_state # Restore the state. print(rng.randf()) # Prints the same value as previously.
Note: Do not set state to arbitrary values, since the random number generator requires the state to have certain qualities to behave properly. It should only be set to values that came from the state property itself. To initialize the random number generator with arbitrary input, use seed instead.
Note: The default value of this property is pseudo-random, and changes when calling randomize. The 0 value documented here is a placeholder, and not the actual default state.
int rand_weighted<>( PackedFloat32Array weights=, weights:PackedFloat32Array=, ):int
Returns a random index with non-uniform weights. Prints an error and returns -1 if the array is empty.

var rng = RandomNumberGenerator.new() var my_array = ["one", "two", "three", "four"] var weights = PackedFloat32Array([0.5, 1, 1, 2]) # Prints one of the four elements in `my_array`. # It is more likely to print "four", and less likely to print "one". print(my_array[rng.rand_weighted(weights)])

float randf<>():float
Returns a pseudo-random float between 0.0 and 1.0 (inclusive).

float randf_range<>( float from=, from:float=, float to=, to:float=, ):float
Returns a pseudo-random float between from and to (inclusive).

float randfn<>( float mean=0.0, mean:float=0.0, float deviation=1.0, deviation:float=1.0, ):float
Returns a [url=https://en.wikipedia.org/wiki/Normal_distribution]normally-distributed[/url], pseudo-random floating-point number from the specified mean and a standard deviation. This is also known as a Gaussian distribution.

Note: This method uses the [url=https://en.wikipedia.org/wiki/Box%E2%80%93Muller_transform]Box-Muller transform[/url] algorithm.
int randi<>():int
Returns a pseudo-random 32-bit unsigned integer between 0 and 4294967295 (inclusive).

int randi_range<>( int from=, from:int=, int to=, to:int=, ):int
Returns a pseudo-random 32-bit signed integer between from and to (inclusive).

void randomize<>():void
Sets up a time-based seed for this RandomNumberGenerator instance. Unlike the [@GlobalScope] random number generation functions, different RandomNumberGenerator instances can use different seeds.




All social media brands are registrated trademarks and belong to their respective owners.





CONTACT IMPRINT TERMS OF USE PRIVACY © ROKOROJI ® 2021 rokojori.com
CONTACT IMPRINT TERMS OF USE PRIVACY © ROKOROJI ® 2021 rokojori.com
We are using cookies on this site. Read more... Wir benutzen Cookies auf dieser Seite. Mehr lesen...