Random Selector Question.

jeecheol

New member
Hi, i used Random Selector and i think it runs tasks same order always.
Is there way to choose always randomly? or should i change seed everytime?
 
Random selector will run randomly - I just did a test and confirmed it. By default it doesn't use a seed but you have the option to within the task.
 
That should work - if you place a breakpoint within the ShuffleChildren method is a random number generated? It almost looks like your setup is using the seed.
 
Do you mean putting 'Wait' between sequence and random Selector?
I didn't use any seed.
I solved problem changing code Random.InitState(System.DateTime.Now.Millisecond); on Seed Method and random works well.
 
Top