↧
Answer by Eydamson
i found the solution. just go to edit>project settings>editor> the change the default host url to your own host url, host url means your sever url. it will work even without the...
View ArticleAnswer by Eydamson
you could use recursive functuion try this float RandomNum(float lastRandNum) { float randNum = Random.Range(min, max); if (randNum == lastRandNum) { return RandomNUm(randNum); } else { return randNum;...
View Article