Hi, all!
Array and Dictionary objects are quite nice, but I have a need for basically having an array of arrays - the arrays are two dimensional and can get rather sizable - say, 10x300 each. The catch is that these arrays are dynamically generated by Construct 2 and there is no preset amount.
In theory I could use a three dimensional array, but that comes with the problem of adding or deleting rows of data - changing one will have an impact on all of them, unless I have misread the documentation.
Ideally it would be something that's a nice list of Arrays, like [Array 1][Array 2][Array 3] and lets you insert and delete members just like the regular array does. Also saving and loading the contents to JSON is necessary.
Using the search I didn't really find a directly suitable solution. Is there some way to do this with the regular objects or perhaps there is a plugin that does this? Thanks!