So I know how to get random numbers, but I am having a problem, I am trying to get random numbers out of a dictionary. Like this:
Var randDictionary = {1:rand_range(0,2)}
func getRand():
Randomize()
var Num = randDictionary[1]
how ever it returns the same number every time. Is there a better way to do this? If not I was thinking of having a array inside that dictionary that holds the random ranges and the function calls that, would that be the best way to do it?