DB/TextureFileData: Difference between revisions

From wowdev
Jump to navigation Jump to search
mNo edit summary
No edit summary
Line 32: Line 32:
   uint32_t TextureId;
   uint32_t TextureId;
   uint8_t Unk1; // 0 or 2 (gender?)
   uint8_t Unk1; // 0 or 2 (gender?)
};
==8.3.7.34872==
struct TextureFileDataRec {
  uint32_t FileDataID; // In 8.3.7 is the max id in for this field 4194303 (int22)
  uint8_t UsageType;
  uint32_t MaterialResourcesID;
  };
  };



Revision as of 05:36, 18 December 2020

≥ 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 in for this field 4194303 (int22)
  uint8_t UsageType;
  uint32_t MaterialResourcesID;
};