This project explores 3 different methods of data serialization (Saving) in Unity: binary serialization, PlayerPrefs and JSON serialization. I based this project on the Unity Serialization Live Cast ...
// Prefer ScriptableObject derived type to use binary serialization regardless of project's asset serialization mode. // This is useful for custom asset types that contain large amounts of data. // ...