Setting up zone types
There are currently two supported zone types, 'box' and 'sphere'
Using a box type need some parameters to add:
boxData = {
coords = {
{
position = vec3(2384.6589, 3086.5298, 48.1531), -- position of the box
size = vec3(100,100,100), -- size of the box
rotation = 0 -- rotation of the box
}
}
}
If you use sphere:
sphereData = {
coords = {
{
position = vec3(2176.8569, 3182.2786, 50.5334), -- position of the sphere
radius = 50.0 -- value of the circle's radius
}
}
}
Last updated
Was this helpful?