DB/CharComponentTextureLayouts: Difference between revisions

From wowdev
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 2: Line 2:
Contains the sizes of the character skinning textures referenced in [[CharComponentTextureSections.dbc|CharComponentTextureSections]].  There are only 2 layouts currently, 512x512 and 1024x512.
Contains the sizes of the character skinning textures referenced in [[CharComponentTextureSections.dbc|CharComponentTextureSections]].  There are only 2 layouts currently, 512x512 and 1024x512.


==???<6.0.1.18179-7.0.1.21737===
==???<6.0.1.18179-7.0.1.21737==
====Table====
====Table====
{| style="background:#FCFCFC; color:black"
{| style="background:#FCFCFC; color:black"

Revision as of 13:20, 16 July 2016

Contains the sizes of the character skinning textures referenced in CharComponentTextureSections. There are only 2 layouts currently, 512x512 and 1024x512.

???<6.0.1.18179-7.0.1.21737

Table

Column Field Type Notes
1 ID Integer
2 Width Integer
3 Height Integer

Struct

struct CharComponentTextureLayoutsRec {
  uint32_t m_ID;
  uint32_t m_width;
  uint32_t m_height;
};