Struggling to find a good solution to parse this data or similar structure in Unity using C#:
{
"levels":{
"level1":{
{0,1,0,0},
{0,0,1,0},
{0,2,0,0},
{0,0,0,0},
}
}
}
I've tried the built in Unity C# class JsonUtility and Boomlagoon plugin but havent been able to parse the data into a Levels 2 dimensional array of different Levels.
Any help would be appreicated.