I have a game with global sprite coins scattered across a vast and wondrous land. The player picks them up. Poof, they are destroyed and added into the score variable.
Suddenly, the player dies (or beats the game) and wants to replay the game.
Upon replay, the global sprites are gone (remember they were destroyed).
I know how to reset the global variables, but how do you restore/create the global sprites to their original layout position? ...without painstakingly create-object each item in a position. There's hundreds of them!
**Do I have to not destroy them and set position -100,-100, upon replay layout, it will reload position? Any other solution?