Random
Link to random
Импорт класса
Link to импорт-класса
It might be required for you to import the package if you encounter any issues (like casting an Array), so better be safe than sorry and add the import at the very top of the file.
ZenScript Copyimport crafttweaker.api.util.Random;
Методы
Link to методы
Name: getRandomUUID
Return Type: string
ZenScript Copy// Random.getRandomUUID() as string
myRandom.getRandomUUID();
Name: nextBoolean
Return Type: boolean
ZenScript Copy// Random.nextBoolean() as boolean
myRandom.nextBoolean();
Name: nextDouble
Returns the next pseudorandom, uniformly distributed double value between 0.0 and 1.0 from this random number generator's sequence.
Return Type: double
ZenScript Copy// Random.nextDouble() as double
myRandom.nextDouble();
Name: nextDouble
Returns the next pseudorandom double. Its range is [min, max]
Return Type: double
ZenScript CopyRandom.nextDouble(min as double, max as double) as double
Параметр | Тип | Описание |
---|---|---|
Параметр min | Тип double | Описание No Description Provided |
Параметр max | Тип double | Описание No Description Provided |
Name: nextFloat
Returns the next pseudorandom, uniformly distributed float value between 0.0f and 1.0f from this random number generator's sequence.
Return Type: float
ZenScript Copy// Random.nextFloat() as float
myRandom.nextFloat();
Name: nextFloat
Returns the next pseudorandom float. Its range is [min, max]
Return Type: float
ZenScript CopyRandom.nextFloat(min as float, max as float) as float
Параметр | Тип | Описание |
---|---|---|
Параметр min | Тип float | Описание No Description Provided |
Параметр max | Тип float | Описание No Description Provided |
Name: nextInt
Returns the next pseudorandom, uniformly distributed int value from this random number generator's sequence.
Return Type: int
ZenScript Copy// Random.nextInt() as int
myRandom.nextInt();
Name: nextInt
Returns the next pseudorandom, uniformly distributed int value between zero (inclusive) and bound (exclusive) from this random number generator's sequence
Return Type: int
ZenScript CopyRandom.nextInt(bound as int) as int
Параметр | Тип | Описание |
---|---|---|
Параметр bound | Тип int | Описание the upper bound (exclusive). Must be positive. |
Name: nextInt
Returns the next pseudorandom int. Its range is [min, max]
Return Type: int
ZenScript CopyRandom.nextInt(min as int, max as int) as int
Параметр | Тип | Описание |
---|---|---|
Параметр min | Тип int | Описание No Description Provided |
Параметр max | Тип int | Описание No Description Provided |