Random: When to set the seed ?

I want to have repeatable results every time I run my game. However, i am using Random.range in multiple classes. Do I set the seed once in a “main class” or do i have to set it every time I call Random.Range() ?

1 Answer

1

Set it once when the game starts up.

aha ... ok thanks :)