↧
Answer by hbalint1
Hello. Try changing the random seed, so it gives real random numbers every time. Put one of these to the first line of Start method: Random.seed = (int)System.DateTime.Now.Ticks; or Random.seed =...
View ArticleAnswer by Xarbrough
Don't use 25 scripts. Use 1 script to manage all your objects, then just put them in a collection (array or list) to reference them. Try this: using UnityEngine; using System.Collections; using...
View Article