hello, I am wondering if unity can create and edit scenes in game? Like for a save, just have it copy a scene and then save it how the player leaves it for later loading? Im not so sure if unity can or not
thanks
hello, I am wondering if unity can create and edit scenes in game? Like for a save, just have it copy a scene and then save it how the player leaves it for later loading? Im not so sure if unity can or not
thanks
Unity do not have a built-in function for it, if you need something like this you have to implement it.
You can use “playerprefs” (http://unity3d.com/support/documentation/ScriptReference/PlayerPrefs.html) to save the state of the game. You’d need to know what information to save, however. As Henrique said, there is no high level API to save the entire game state.