Wow you can look at two bytes and go "half-float 1" I can't do fp conversion =( I e-mailed 010 editor guys about adding half-float to their inspector and they said they'll add it in their "next release" lol whenever that might be. I then told them their competitors already have t...
It's just 3 structs, probably vertbuff + index buff + whatever "blend weight" refers to. At offset 191 that probably tells you how many structs to follow, and the type of struct. Each of them comes with a count after the name. And then you start reading the structs. Then there's another st...
EDIT: oh, now that I look at the array more carefully, (0,0) is at the bottom-left and not the upper-left -_-
Now I loop down to 0 for the rows and it's right-side up lol
I'm writing a simple bitmap export in python to get an idea of how to write such an exporter. It is the uncompressed 24-bit bmp. I have the header down, and here's how I'm doing the pixel array pix = bytes() for x in range(pic.width): for y in range(pic.height - 1, 0, -1): pixel = pic.get_pixel(x, y...