I’ve been successfully saving/loading app data by the “Rob Miracle method”:
But I haven’t been able to get it to work with “nested tables” like this:
myGameSettings = {} myGameSettings.highScore = 1000 myGameSettings.soundOn = true myGameSettings.customLevels = {} saveTable(myGameSettings, "mygamesettings.json")
I guess there is no way around using multiple files (one sub file per table)?