DB/GroundEffectDoodad: Difference between revisions

From wowdev
Jump to navigation Jump to search
No edit summary
mNo edit summary
Line 1: Line 1:
==0.5.3.3368==
struct GroundEffectDoodadRec
{
  uint32_t m_ID;
  uint32_t m_doodadIdTag;
  stringref m_doodadpath;
};
==Structure==
==Structure==
{| style="background:#FCFCFC; color:black"
{| style="background:#FCFCFC; color:black"

Revision as of 14:52, 5 June 2016

0.5.3.3368

struct GroundEffectDoodadRec {

 uint32_t m_ID;
 uint32_t m_doodadIdTag;
 stringref m_doodadpath;

};

Structure

Column Field Type Notes
1 ID Integer
2 Internal ID Integer Secondary ID, unique. Mostly a difference of one to ID. Removed around 3.2.
2 GroundModels String Models found in World\NoDXT\Detail\; *.MDL or *.MDX
3 flags Integer Mostly false. True on 26 WotLK doodads. New in 3.*.

6.0.1.18179

struct GroundEffectDoodadRec {
  uint32_t m_ID;
  stringref m_doodadpath;
  uint32_t m_flags;
  float m_animscale;
  float m_pushscale;
};