SetWaveQuadBounds
Docslocal retval = SetWaveQuadBounds(waveQuad, minX, minY, maxX, maxY)Description
This native allows you to update the bounds of a specified water quad index.
Parameters
| Name | Type | Description |
|---|---|---|
waveQuad | int | The wave 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 = SetWaveQuadBounds(0, -5000, -5000, 5000, 5000)