Serialize and Deserialize JSON and JSON Array in Unity C#
JsonUtility is a lightweight API. Only simple types are supported. It does not support collections such as Dictionary. One exception is List. It supports List and List array! If you need to serialize a Dictionary or do something other than simply serializing and deserializing simple data types, use a third-party…