autoload and autosave?
![developer6810](http://forums.gamesalad.com/applications/dashboard/design/images/defaulticon.png)
I know you have to make a load and save button and push or it won't load or save. Is there a way to make it automatically save and automatically load?
Best Answer
-
IsabelleK Posts: 2,807
You can put in in any actor you want - even in players actor - it doesn't matter. And yes, Timer resets itself when you change the scene.
You can make additional attribute, call it SaveTime, and put a rule in each scene:
Timer: Every 1 second
Change attribute game.SaveTime to game.SaveTime+1
Rule, if ANY:
game.SaveTime is equal to: 60
game.SaveTime is equal to: 120
game.SaveTime is equal to: 180
etc.
Put your save behaviors here.
This will autosave every one minute, and it won't reset timer.
Answers
Autoload works similar.
For the autoload, I would put it in your first scene - with your logo, menu, or something like this. You can put Load behaviors into background actor.