I’m using loadsave (https://coronalabs.com/blog/2014/10/14/tutorial-saving-and-loading-lua-tables-with-json/) to store a lua table and load it. But I’ve noticed I can’t access some infos in the loaded version of the table.
Example:
When storing a table which can be accessed like for example for getting the size of #MyTable [1][1][2] I get a correct value (like for example 3 for three elements there) BUT when I saved the table, reload it via loadsave.loadTable I can’t get the info like before. Can it be the loadTable is not getting the exact format of the table back?