DB/TransportAnimation

From wowdev
Revision as of 17:38, 2 October 2017 by Barncastle (talk | contribs) (→‎Structure)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

0.5.3.3368

struct TransportAnimationRec {
  uint32_t m_ID;
  uint32_t m_TransportID;
  uint32_t m_TimeIndex;
  float m_PosX;
  float m_PosY;
  float m_PosZ;
};

Structure

Column	Field 			Type 
1 	ID 			Integer 	
2 	TransportID 		Integer		
3 	TimeIndex 		Integer
4 	PosX 			Float 	
5 	PosY 			Float 	
6 	PosZ 			Float 	
7 	iRefID_SequenceID 	Integer

1.12.1.5875, 6.0.1.18179

struct TransportAnimationRec {
  uint32_t m_ID;
  uint32_t m_TransportID;
  uint32_t m_TimeIndex;
  float m_Pos[3];
  uint32_t m_SequenceID;
};