Hey Guys!
I want to use JSON to add to my node-webkit game the ability for the player to make JSON files or something, and then put them in the same folder as the game, then they can have custom objects, or customize things in-game kind of like modding. This is an example file:
{
"c2dictionary":true,
"data": {
"ObjectName": "Name",
"Type": "Type",
"Var1": 0,
"Var2": 0,
"Var3": 0,
"Var4": 0,
"Craftable": "No"
}
}
and the game loads it. Is this possible? If so, what would I need to know to do this?