- Found in:
- Vanilla
float[]functionRandomFloatsFromSeed(intaiSeed, intaiCount, floatafMin=0.0, floatafMax=1.0)NativeGlobal
Description
Documentation Comment
Generates an array of pseudorandom floating point numbers from a specific seed between afMin and afMax (inclusive)
Caveats
Parameters
intaiSeed
intaiCount
floatafMin=0.0
floatafMax=1.0
Examples
Auto-Generated Example
int myInt__aiSeed
int myInt__aiCount
float myFloat__afMin
float myFloat__afMax
float[] returnedValue = Utility.RandomFloatsFromSeed(myInt__aiSeed, myInt__aiCount, myFloat__afMin, myFloat__afMax)