DB/ZoneLightPoint: Difference between revisions

From wowdev
Jump to navigation Jump to search
m (Marlamin moved page ZoneLightPoint.dbc to DB/ZoneLightPoint)
mNo edit summary
Line 2: Line 2:


This file lists the 2d vertices of an n-gon making up the extents of each ZoneLight.
This file lists the 2d vertices of an n-gon making up the extents of each ZoneLight.
== Header Info ==
Records....................Depends
Fields.....................5
Record Size................20
String Block Size..........1


== Structure ==
== Structure ==

Revision as of 00:26, 23 February 2016

New in Cataclysm.

This file lists the 2d vertices of an n-gon making up the extents of each ZoneLight.

Structure

Column 	Field 		 Type
1       ID		 Integer 	
2       iRefID_ZoneLight Integer 	
3       Position	 Float[2]
5       PointOrder	 Integer 	

6.0.1.18179

struct ZoneLightPointRec {
  uint32_t m_ID;
  uint32_t m_zoneLightID;
  float m_pos[2];
  uint32_t m_pointOrder;
};