DB/TextureFileData: Difference between revisions

From wowdev
Jump to navigation Jump to search
Line 1: Line 1:
==6.0.3.19243==
==6.0.3.19243, 6.2.4.21463==
  struct TextureFileDataRec{
  struct TextureFileDataRec{
   uint32_t m_ID;
   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_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_unk; // always 0
   uint32_t m_textureType; // 0 = texture for male, 1 = texture for female, 2 = both male/female texture, 3 = item texture
   uint32_t m_textureType; // 0 = texture for male, 1 = texture for female, 2 = both male/female texture, 3 = item texture
Line 9: Line 9:


[[Category:DBC]]
[[Category:DBC]]
[[Category:DBC_WoD]][[Category:6.0.3.19243]]
[[Category:DBC_WoD]][[Category:6.0.3.19243]][[Category:6.2.4.21463]]

Revision as of 22:22, 13 May 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;
};