I am using SimpleJSON and I am new to json.
For some reason, no one on google mentions how to convert objects to json strings. They just say they deserialize json strings, or give you an already created json string. Even the SimpleJSON documentary does not mention this. Why is this?
This is my code. Does anyone know what is the code to convert material to json string?
[System.Serializable] public class Skill { public bool crush = false; public bool parry = false; public bool slam = false; public bool magic = false; public bool evadeUp = false; } public Skill[] allSkills;
json c # serialization unity3d
Benshuu
source share