Search Unity

  1. Megacity Metro Demo now available. Download now.
    Dismiss Notice
  2. Unity support for visionOS is now available. Learn more in our blog post.
    Dismiss Notice

Display navmesh surface at runtime?

Discussion in 'Animation' started by mspink, Oct 10, 2018.

  1. mspink

    mspink

    Joined:
    Sep 5, 2018
    Posts:
    2
    I'm baking a navmesh at runtime and it would be really helpful to visualize it.

    Does anyone know of a way to turn on the display of the baked navmesh similar to the way it shows up in the editor?
     
  2. hippocoder

    hippocoder

    Digital Ape

    Joined:
    Apr 11, 2010
    Posts:
    29,723
    NavMesh.CalculateTriangulation()

    As it's just for visual purposes you can easily just draw stuff at the vertices array.
     
    mspink likes this.
  3. mspink

    mspink

    Joined:
    Sep 5, 2018
    Posts:
    2
    Wow, I totally missed this class - I was looking for a method on the component itself. Thank you!
     
    hippocoder likes this.