Hey! So I am making a game development planner and I want to make it so that whenever the application closes, all of the data they entered in the text fields will still be there when they re open the application. Can anybody help me with that? Thanks!
Some possible options would be: BinaryFormatter, JSonUtility. Save the data to disk and reload it when the application is launched later. Of course there are other options you could look into, as well.
As for saving when it closes, you could use OnApplicationQuit and/or a save button and/or some timed auto save.
Hope that helps.