【Unity实用小方法】随机生成不重复的数字
public int[] GetRandomSequence2(int total, int n) { //随机总数组 int[] sequence = new int[total]; //取到的不重复数字的数组长度 int[] output = new int[n]; for (int i = 0; i <