DB/CreatureDisplayInfoGeosetData: Difference between revisions

From wowdev
Jump to navigation Jump to search
(Created page with "==8.0.1.25902== struct CreatureDisplayInfoGeosetDataRec { uint32_t m_ID; uint8_t GeosetIndex; uint8_t GeosetValue; uint32_t DisplayId; }; Category:DBC")
 
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
==8.0.1.25902==
==8.0.1.25902==
  struct CreatureDisplayInfoGeosetDataRec {
  struct CreatureDisplayInfoGeosetDataRec {
   uint32_t m_ID;
   uint32_t ID;
   uint8_t GeosetIndex;
   uint8_t geosetIndex; // (meshId = (geosetIndex + 1) * 100 + geosetValue)
   uint8_t GeosetValue;
   uint8_t geosetValue;
   uint32_t DisplayId;
   uint32_t creatureDisplayInfoID;
  };
  };
[[Category:DBC]]
[[Category:DBC]]

Latest revision as of 18:32, 6 March 2018

8.0.1.25902

struct CreatureDisplayInfoGeosetDataRec {
  uint32_t ID;
  uint8_t geosetIndex; // (meshId = (geosetIndex + 1) * 100 + geosetValue)
  uint8_t geosetValue;
  uint32_t creatureDisplayInfoID;
};