Client
addSphere
Parameters
Returns
Example
local zone = fjsf.addSphere({
coords = vector3(200.0, -800.0, 30.0),
radius = 5.0,
onEnter = function(zone)
print('Entered sphere zone', zone.id)
end,
inside = function(zone)
print('Inside sphere zone')
end,
onExit = function(zone)
print('Exited sphere zone')
end
})addCylinder
Parameters
Returns
Example
addBox
Parameters
Returns
Example
addPoly
Parameters
Returns
Example
removeZone
Parameters
Returns
Example
containsZone
Parameters
Returns
Example
Last updated