SetWaterQuadBounds
Docslocal retval = SetWaterQuadBounds(waterQuad, minX, minY, maxX, maxY)Description
This native allows you to update the bounds of a specified water quad index.
Parameters
| Name | Type | Description |
|---|---|---|
waterQuad | int | The water quad index |
minX | int | The minX coordinate |
minY | int | The minY coordinate |
maxX | int | The maxX coordinate |
maxY | int | The maxY coordinate |
Returns
BOOLReturns TRUE (1) or FALSE (0).
Examples
Official
local success = SetWaterQuadBounds(0, -5000.0, -5000.0, 5000.0, 5000.0)