/Unity的随机数,int左包含,右不包含 //1-99 int a = Random.Range(1, 100); print(a); //float重载 左右都包含 float b = Random.Range(1, 99.5f); print(b);
一棵小松林
Gamer游戏开发者