Model.blob

From wowdev
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
This section only applies to versions ≥ Cata.

This is storing bounding boxes for all models (m2). It was added in Cataclysm to help with streaming data.

MBVR

uint32_t version;    // even though format has changed, this is still at 0 in Legion

MBBB

struct {
#if < Legion
  uint32_t filenameOffset;  // into MBFN chunk
#else
  uint32_t fileDataId;
#endif
  CAaBox boundingBox;      // Collision bounding box.
} entries[];

MBFN

This section only applies to versions < Legion.
char filenames[]; // zero-terminated, no file extensions.