Okay, I ran a very simple test file through the .csv to JSON converter you provided:
Here is the .csv:
a1,b1,c1,d1
a2,b2,c2,d2
a3,b3,c3,d3
a4,b4,c4,d4
I ran it through the converter and got this output:
[
{
"a1": "a2",
"b1": "b2",
"c1": "c2",
"d1": "d2"
},
{
"a1": "a3",
"b1": "b3",
"c1": "c3",
"d1": "d3"
},
{
"a1": "a4",
"b1": "b4",
"c1": "c4",
"d1": "d4"
}
]
Now if I save this data in a .JSON file and use the JSON plugin to open it in Construct3, will it become a regular array with regular indices?