| Property | Value |
|---|---|
| Native Name | IS_NAVMESH_LOADED_IN_AREA |
| Hash | 0xF813C7E63F9062A5 |
| Return Type | BOOL |
| Build | 1207 |
| Parameters | x1 (float), y1 (float), z1 (float), x2 (float), y2 (float), z2 (float) |
Description: ```
Returns whether navmesh for the region is loaded. The region is a rectangular prism defined by it's top left deepest corner to it's bottom right shallowest corner.
If you can re-word this so it makes more sense, please do. I'm horrible with words sometimes...
### Usage
**Lua (Direct):**
```lua
local result = IsNavmeshLoadedInArea(x1, y1, z1, x2, y2, z2)
Lua (Hash):
local result = Citizen.InvokeNative(0xF813C7E63F9062A5, x1, y1, z1, x2, y2, z2)