RemoveLink
7/14/25Less than 1 minute
NavMesh.RemoveLink(NavMeshLinkInstance handle)
Removes a link from the NavMesh.
Parameters:
| Name | Type | Description |
|---|---|---|
| handle | NavMeshLinkInstance | The instance of a link to remove. |
Usage
---@type NavMeshLinkInstance
local handle;
NavMesh:RemoveLink(handle)Extra Detail
Use the instance returned by AddLink to remove the corresponding link.

