Hi all, I'm trying to research Blur models.
I've looked into the file structure so I can suppose that its structure is hierarchical.
the file is divided into many elements, some of them are big and has some child elements inside.
the typical structure
Code:
struct element
{
char element_name[8];
DWORD element_size; // size of the whole element including data
DWORD flag; // I saw 2 types of flag: 04004300 and 00004100
char data; //data may not to present, I dont understand how to recognize what to do: read the data or the next element?
}
Examples.Open blackpost3.model as an example.
main blocks are: StrTab (contains part names, starts at 70h) and Scene (contains scene data: materials including DDS textures and mesh data in the end of the block; starts at 2B9h)
I need anyone to help me with Scene data, I can't understand them. Maybe it's xor'd, I don't know.