CUrrently it seems there only way to do this is by creating a new variable for each of the JSON nodes..
For example, if I need to get item.name.eng i have to write an epic puzzle as in the attached image. This is clearly very unwieldy and I cant imagine being able to use this for complex JSON data.
Hopefully I’m wrong and there is a fast way to access a JSON nodes..
ANyone know?
CHeers
JSON:
{
"item": {
"filename": {
"eng": "someModel.gblx"
},
"name": {
"eng": "My Model"
},
"description": {
"eng": "This is some description"
},
"price": 200
},
"item1": {
"filename": {
"eng": "someModel.gblx"
},
"name": {
"eng": "My Model"
},
"description": {
"eng": "This is some description"
},
"price": 200
}
}
Attachments:
You must be
logged in to view attached files.