To calculate and set a navigation path
- First, check if your destination is on a valid NavMesh area
- Calculate the path from your AI to the destination
- Only move when you've found a valid path
To setup movement along the calculated path
- Set how fast your AI moves
- Control how quickly it speeds up
- Adjust how fast it rotates
- Define when it should stop near its target
To navigate through Gaps & Ledges
- Set "autoTraverseOffMeshLink = true" to let your AI automatically use connections between separate NavMesh areas
- Check if your AI is currently on an off-mesh link with "isOnOffMeshLink"
- Call "CompleteOffMeshLink()" to finish crossing the link when needed