I was curious what this is all about: Replay service? (change all math.randoms to flx random to remember the seed)? Could you elaborate for me what you mean by it?
My finals end tomorrow, so it's opening up for me.
I named my systems "services" and was thinking about adding one to save replays of the game (since flixel has that feature already). It stores your inputs and literally re-plays the game. But because math.random is random, I can't rely on that. Flixel's random is seeded, and the replays store the seed, so the game chooses the same random numbers as before to make everything play out the same.
HeroPower
So much to do so little time, eh?
I was curious what this is all about: Replay service? (change all math.randoms to flx random to remember the seed)? Could you elaborate for me what you mean by it?
MSGhero (Updated )
My finals end tomorrow, so it's opening up for me.
I named my systems "services" and was thinking about adding one to save replays of the game (since flixel has that feature already). It stores your inputs and literally re-plays the game. But because math.random is random, I can't rely on that. Flixel's random is seeded, and the replays store the seed, so the game chooses the same random numbers as before to make everything play out the same.
But then I might not add that feature.