Outscal Logooutscal logo

AI Navigation - Part 2

Download

Unity Cheat Sheet: #38

Author Name

Author Name

Author Role


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


To setup obstacle avoidance

  • Set "carving = true" to make obstacles create temporary holes in the NavMesh
  • Adjust "carvingMoveThreshold" to control how much movement triggers carving
  • Set "carvingTimeToStationary" to define how quickly carving fades after stopping
  • Use "carveOnlyStationary = false" to enable carving while moving

To Visualize the Navigation Path

  • Draw a red line from your AI to its destination
  • Show green lines between all the corners of the path
  • Great for fixing navigation problems!

Show More