All attempts to use JsonUtility.FromJson on a json with nested values fail.
How would you turn the following json into an object without creating a class for every nested value?
{
"Player": {
"Level": 1
},
"Weapons":{
"BasicWeapon": {
"Level": 1
}
}
}
JsonConvert.DeserializeObject(yourString)Player.Levelit returns blank not null.