DB/TextureFileData: Difference between revisions

From wowdev
Jump to navigation Jump to search
No edit summary
 
(6 intermediate revisions by 5 users not shown)
Line 1: Line 1:
==6.0.3.19243==
 
{{Template:Sandbox/VersionRange|min_expansionlevel=6}}
 
== 7.0.1.21737 ==
{| style="background:#FCFCFC; color:black"
|-
! width="80" | Column
! width="180" | Field
! width="80" | Type
! width="500" | Notes
|- style="background:#E0E0E0;"
| 1 || ID || Integer ||
|-
| 2 || Unknown || Integer ||
|- style="background:#E0E0E0;"
| 3 || [[DB/FileDataComplete|FileDataCompleteID]] || iRefID ||
|}
[[User:Synric|Synric]] 12th July 2016
 
==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
   {{Template:Type/foreign_key|table=FileData}} m_fileDataID;
   {{Template:Type/foreign_key|table=FileData}} 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;
  };
  };


[[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]]
[[Category:DBC_Legion]][[Category:7.0.1.23717]]

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