DB/ZoneLightPoint: Difference between revisions

From wowdev
Jump to navigation Jump to search
No edit summary
No edit summary
 
(6 intermediate revisions by 4 users not shown)
Line 1: Line 1:
New in Cataclysm.
'''In 3.3.5, those values were instead hardcoded directly in the client (Northrend only). They were moved to DBC in cataclysm.'''
 
{{Template:Sandbox/VersionRange|min_expansionlevel=4}}


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 ==
Line 15: Line 10:
  2      iRefID_[[ZoneLight.dbc|ZoneLight]] Integer
  2      iRefID_[[ZoneLight.dbc|ZoneLight]] Integer
  3      Position Float[2]
  3      Position Float[2]
  5      VertIndex? Integer
  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;
};
[[Category:DBC]]
[[Category:DBC]]
[[Category:DBC_WoD]]
[[Category:6.0.1.18179]]

Latest revision as of 02:54, 13 December 2022

In 3.3.5, those values were instead hardcoded directly in the client (Northrend only). They were moved to DBC in cataclysm.

≥ Cata

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