Generating pseudo random numbers in Unity is easy. This is how it works: Random.InitState(12345); //This is the seed print(Random.Range(0, 10)); //returns 6 ...
確定! 回上一頁