Hello, I was wonder how I should record this information:
# num: material: type: geo: light: tex: extralight: verts:
0: 13 0x0000 4 3 0 0.0000 3 0, 0 1, 1 2, 2
1: 13 0x0000 4 3 0 0.0000 3 2, 2 3, 3 4, 4
2: 13 0x0000 4 3 0 0.0000 3 4, 4 5, 5 0, 0
3: 13 0x0000 4 3 0 0.0000 3 4, 4 0, 0 2, 2
4: 13 0x0000 4 3 0 0.0000 4 7, 7 12, 12 8, 8 0, 0
I want to record it in a float[], but I cannot do it without having to know the size of it ahead of time(Which is impossible unless I run through it a second time). The reason I say this is that the range of values changes based on the value in verts. The number to the right of verts is the locations of Vertices; so if it's 4, there are 8 extra numbers, if it's 3, there are 6 extra numbers.
Side-note: Ignore the column "num:" as I'm not going to use any of those values.