Random number from a seed

There is a way that with random Generate a pseudo random number with a seed like random.range but with a seed

You can use this function to initialize Unity’s random number generator to a particular state from a seed value:

Alternatively, you can use System.Random and create it with a seed using this constructor: Random Constructor (System) | Microsoft Learn

3 Likes