DB/CharBaseSection: Difference between revisions

From wowdev
Jump to navigation Jump to search
m (Marlamin moved page CharBaseSection.dbc to DB/CharBaseSection)
(8.1.5 info)
 
(2 intermediate revisions by one other user not shown)
Line 1: Line 1:
==6.0.1.18179==
__TOC__
 
{{Template:Sandbox/VersionRange|min_expansionlevel=6}}
 
==Warlords==
===6.0.1.18179===
====Struct====
  struct CharBaseSectionRec {
  struct CharBaseSectionRec {
   uint32_t m_ID;
   uint32_t m_ID;
   uint32_t m_fallbackID;
   uint32_t m_fallbackID;
   uint32_t m_layoutResType;
   uint32_t m_layoutResType;
};
==Battle for Azeroth==
===8.1.5.29281===
====Struct====
struct CharBaseSectionRec {
  uint32_t m_ID;
  uint32_t m_layoutResType;            // 1 = HD model, 0 = non-HD
  uint32_t m_variationEnum;            // The base section type: 0 = Skin; 1 = Face; 2 = Facial Hair; 3 = Hair; 4 = Underwear;
                                        // 5, 6, 7 = Custom 1, 2, 3 (Custom 1 is used for Tattoos)
  uint32_t m_resolutionVariationEnum;  // VariationEnum based on resolution of model (0-15), see [[CharSections]
  };
  };
[[Category:DBC]]
[[Category:DBC]]
[[Category:DBC_WoD]][[Category:6.0.1.18179]]
[[Category:DBC_WoD]][[Category:6.0.1.18179]]

Latest revision as of 10:11, 7 April 2019

≥ WoD

Warlords

6.0.1.18179

Struct

struct CharBaseSectionRec {
  uint32_t m_ID;
  uint32_t m_fallbackID;
  uint32_t m_layoutResType;
};

Battle for Azeroth

8.1.5.29281

Struct

struct CharBaseSectionRec {
  uint32_t m_ID;
  uint32_t m_layoutResType;            // 1 = HD model, 0 = non-HD
  uint32_t m_variationEnum;            // The base section type: 0 = Skin; 1 = Face; 2 = Facial Hair; 3 = Hair; 4 = Underwear;
                                       // 5, 6, 7 = Custom 1, 2, 3 (Custom 1 is used for Tattoos)
  uint32_t m_resolutionVariationEnum;  // VariationEnum based on resolution of model (0-15), see [[CharSections]
};