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; //...")
 
mNo edit summary
Line 1: Line 1:
{{Template:SectionBox/VersionRange|min_expansionlevel=4}}
This is storing bounding boxes for all models. It was added in Cataclysm to help with streaming data.
This is storing bounding boxes for all models. It was added in Cataclysm to help with streaming data.
=MBVR=
=MBVR=

Revision as of 18:12, 21 February 2016

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 {
  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.