Is it possible to create game saves that save a players progress? I’m a real noob when it comes to java script right now but if anyone could point me in the direction of some sample code i could try to decipher that’d be gr8. :lol:
Well, you have to save each of your variables yourself.
You can do this either with the built-in PlayerPrefs class (check the script docs), or with the .NET tools and write your own file.
There is no built-in game data serialization yet, but that is generally something that is unique to your project anyway.
HTH,
-Jeremy
im abit suprised unity cant save the game state
especially since you can edit things in realtime and move frame by frame in the editor
The code for serializing assets is not present in the player. This was done to reduce code size of the player runtime.
good thinking 99