mirror of
https://github.com/Steffo99/hella-farm.git
synced 2024-11-22 08:04:23 +00:00
Add Random.sample
function
This commit is contained in:
parent
d222e8c066
commit
2286009079
1 changed files with 9 additions and 0 deletions
|
@ -10,3 +10,12 @@ static var rng: RandomNumberGenerator = null:
|
||||||
return rng
|
return rng
|
||||||
set(value):
|
set(value):
|
||||||
rng = value
|
rng = value
|
||||||
|
|
||||||
|
|
||||||
|
static func sample(array: Array[Variant], imin = null, imax = null) -> Variant:
|
||||||
|
if imin == null:
|
||||||
|
imin = 0
|
||||||
|
if imax == null:
|
||||||
|
imax = len(array) - 1
|
||||||
|
var idx = rng.randi_range(imin, imax)
|
||||||
|
return array[idx]
|
||||||
|
|
Loading…
Reference in a new issue