Model.blob: Difference between revisions

From wowdev
Jump to navigation Jump to search
(Created page with "This is storing bounding boxes for all models. It was added in Cataclysm to help with streaming data. =MBVR= uint32_t version; =MBBB= struct { uint32_t filenameOffset; //...")
(No difference)

Revision as of 16:36, 6 February 2016

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

MBVR

uint32_t version;

MBBB

struct {
  uint32_t filenameOffset; // into MBFN chunk
  CAaBox boundingBox;      // No idea of colision or vertex bounding box.
} entries[];

MBFN

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