Hi, sure, atm I would use it for storing those asJson objects into arrays responsible for storing levels ( then exporting those arrays asJson in to external files ). I've got many types of same types of objects there in different sizes with many different variables responsible for different conditions. Now, when I want to load a level with all the data., on creating the objects I have to set all parameters and variables manually one by one using tokenat, and it ends up being a lot of conditions and actions. Also later down the line the number will increese due to more objects and data I will be adding.
I would imagine it would work something like this in my case
- For each Platform(Family): Set Value at X,Y,Z,Platform.asJson
- Ajax; On completed: Array: load from JSON string AJAX.LastData
- For each XYZ element & Current value =/= 0: create object from JSON string Array.CurValue
So that's how I would currently use it, but obviously it could be used with other data storages, or even multiplayer games for setting data to transfer!
Thanks!
EDIT@ Don't want to add to much, but it could go even as far as export layout and layer as json.
EDIT2@ And thinking about it bit more, maybe there should be to types of storing or an option to either store with position on the layout or without it. Just looking at it from different usability angles.