Hello, all.
I would like to save and load/parse files with a data structure similar to this:
Frame, X, Y, W, H, Angle - so basically all integers, like this:
0 256 256 64 -32 0
And there would be a bunch of them, say 100 or so.
They need to be parsed in the correct order, but there's no need to access any specific lines or such. So the system would do a For each on some objects, add data on each to a file and then save that as a file on the users system (as a system download).
Same should happen in the opposite order.
Can this be done in runtime and what would be the best way to do it?