DB/TextureFileData

From wowdev
(Redirected from TextureFileData.dbc)
Jump to navigation Jump to search

≥ WoD

7.0.1.21737

Column Field Type Notes
1 ID Integer
2 Unknown Integer
3 FileDataCompleteID iRefID

Synric 12th July 2016

6.0.3.19243, 6.2.4.21463

struct TextureFileDataRec{
  uint32_t m_ID; // Identification value. Seemingly has no further use. Probably for internal tools.
  uint32_t m_textureItemID; // this is the id used to join this table with other ones (see also ItemDisplayInfo.dbc)
  uint32_t m_unk; // always 0
  uint32_t m_textureType; // 0 = texture for male, 1 = texture for female, 2 = both male/female texture, 3 = item texture
  foreign_key<uint32_t, &FileDataRec::m_ID> m_fileDataID;
};

8.0.1.25902

struct TextureFileDataRec {
  uint32_t Id; // filedata
  uint32_t TextureId;
  uint8_t Unk1; // 0 or 2 (gender?)
};

8.3.7.34872

struct TextureFileDataRec {
  uint32_t FileDataID; // In 8.3.7 is the max id for this field 4194303 (int22)
  uint8_t UsageType;
  uint32_t MaterialResourcesID;
};