How to save game progress using Serialization in Unity
Saving and loading game sessions are a must for large games. You can use Playerprefs If you need to save some simple variables of your game and retrieve it. Playerprefs are not suitable to save large amounts of data. This is where serialization comes in. To understand how serialization works, take a look at the … Read more