I noticed that var can contain an array of vars. Is it possible to make this as multidimensional array of array or array of vars as I like and it still saves into and loads from file without any extra code at all?
Or would it be a better idea to use ValueTree with multiple properties, each of them being a one dimensional array of vars?
Basically I’m thinking of converting the following into using arrays of vars:
std::vector<std::vector<std::vector<uint8_t>>>
Only the innermost vector size will change during the lifetime of the software. The two outermost vectors are always the same size, no matter what.