native interface NoiseGenerator
This is the pure native interface for noise generator objects that can be passed into the constructor of the Random class.
Methods
float Random (const float) | Returns a new random value from the given seed 'x'. |
Reference
method float Random (const float x) |
Returns a new random value from the given seed 'x'. When using the same seed, the generator will always return the same random value. The return value range is -1.0 ~ 1.0. |