mirror of
https://github.com/Steffo99/hella-farm.git
synced 2024-11-22 08:04:23 +00:00
14 lines
235 B
GDScript
14 lines
235 B
GDScript
extends Sampler
|
|
class_name SamplerRandom
|
|
|
|
|
|
## Sample a random reference from the array.
|
|
|
|
|
|
@export var possibilities: Array = []
|
|
|
|
|
|
func sample() -> Object:
|
|
if len(possibilities) == 0:
|
|
return null
|
|
return Random.sample(possibilities)
|