DB/TransportAnimation: Difference between revisions

From wowdev
Jump to navigation Jump to search
mNo edit summary
 
(One intermediate revision by the same user not shown)
Line 13: Line 13:
  2 TransportID Integer
  2 TransportID Integer
  3 TimeIndex Integer
  3 TimeIndex Integer
  4 PosX Float
  4 PosX Float
  5 PosY Float
  5 PosY Float
  6 PosZ Float
  6 PosZ Float
  7 iRefID_[[AnimationData.dbc|SequenceID]] Integer
  7 iRefID_[[AnimationData.dbc|SequenceID]] Integer


==1.12.1.5875, 6.0.1.18179==
==1.12.1.5875, 6.0.1.18179==
Line 27: Line 27:
  };
  };
[[Category:DBC]]
[[Category:DBC]]
[[Category:DBC_Alpha]]
[[Category:DBC_Vanilla]]
[[Category:DBC_WotLK]]
[[Category:DBC_WotLK]]
[[Category:DBC_WoD]][[Category:6.0.1.18179]]
[[Category:DBC_WoD]][[Category:6.0.1.18179]]

Latest revision as of 17:38, 2 October 2017

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;
};