|
hi everybody.. i need some help on saving, autosaving, and continuing a game.. SAVING : the user presses a SAVE button which saves the game of the users progress.. AUTO-SAVE : the application will save the users' progress for a few minute intervals.. CONTINUE : the user will be press a CONTINUE button from either the SAVE point or from the AUTO-SAVE with pretty please.. and with a few cherries, icing etc3 on top... i need help on this... REAL BADLY...its urgent thank you for your time reading.. its highly appreciated..
(comments are locked)
|
|
Saving a game is a tricky subject - I've released this (which is in Beta) that enables many things to be saved automatically. You can also add checkpoints regularly and resume from them. It will really depend on what you do in your levels. i did went to your website... and i downloaded your example package... it works.. ^_____^ thanks.. but how to make it to autosave..??
Jun 11 '12 at 10:09 AM
zerox911
So you just want something in a timer that calls LevelSerializer.Checkpoint() every few minutes. That will save the Resume information.
Jun 11 '12 at 10:16 AM
whydoidoit
Will save after 1 minute and then every three minutes
Jun 11 '12 at 10:19 AM
whydoidoit
yeah... some thing like that.. would the script create a new file that saves the progress and call it when its activated..??
Jun 11 '12 at 10:20 AM
zerox911
It stores the resume information in PlayerPrefs - there's just one for the whole game at the moment. If you want to do it yourself you could store the string that is returned from LevelSerializer.SerializeLevel() and load it back using LevelSerializer.LoadSavedLevel(yourString);
Jun 11 '12 at 10:21 AM
whydoidoit
(comments are locked)
|
