Hi.
In my application I need to reproduce the same random sequence providing the initial number. I used
math.randomseed( someNumber )
, and it seemed to work well. But I noticed that it generates different sequences in simulator (windows) and mobile devices (android).
Could anybody clarify the mechanism of the random generator used? How can I make sure to generate absolutely the same random sequence on all devices, both android and ios?
Thanks in advance.