Zone Options Formatting
Example Circle Zone Options
Example Box Zone Options
Example Poly Zone Options
Last updated
Last updated
{
name = 'debug_zone_circle', -- the name of the zone
center = vector3(0.0, 0.0, 0.0), -- the center of the circle zone
radius = 1.0, -- the size of the zone
debugPoly = true, -- if the zone should be visible
useZ = true, -- if the circle should be spherical
}{
name = 'debug_box_zone', -- the name of the zone
center = vector3(0.0, 0.0, 0.0), -- the center of the box zone
width = 1.0, -- the width of the box zone
length = 1.0, -- the length of the box zone
debugPoly = true, -- if the zone should be visible
}{
name = 'debug_poly_zone', -- the name of the zone
points = { -- the points of the poly zone
vector2(0.0, 0.0),
vector2(0.0, 0.0),
vector2(0.0, 0.0),
},
debugPoly = true, -- if the zone should be visible
}