Model.blob

From wowdev
Revision as of 23:17, 18 August 2017 by Schlumpf (talk | contribs)
Jump to navigation Jump to search
This section only applies to versions ≥ Cata.

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

MBVR

uint32_t version;

MBBB

struct {
#if < Legion
  uint32_t filenameOffset;  // into MBFN chunk
#else
  uint32_t fileDataId;
#endif
  CAaBox boundingBox;      // No idea of colision or vertex bounding box.
} entries[];

MBFN

char filenames[]; // zero-terminated, no file extensions.