Skip to main content

How To Add Navigation Mesh

Navigation Mesh allows characters (known as Agents) to navigate the AR scene using point-and-click touch inputs.

Lightship NavMesh with Doty

Prerequisites

You will need a Unity project with Lightship AR and Lightship Meshing enabled. For more information, see Installing ARDK 3.0 and How to Mesh: Adding Physics.

You will also need a Unity GameObject with the AR Mesh Manager and Lightship Meshing Extension Components. For more information, follow the Section 1 steps under Creating the Mesh.

Before starting this tutorial, verify that your scene is generating a mesh like this image. Then you can change the shader on your prefab to make the mesh invisible and start following this guide to add navigation.

Lightship Mesh Visual

Adding the Navigation Mesh Manager

To add a LightshipNavMeshManager:

  1. Create an empty GameObject.
    1. In the Hierarchy, select the root of the scene.
    2. From the main menu, select GameObject, then Create Empty.
    3. Name it NavMeshManager.
  2. Add a LightshipNavMeshManager component to the NavMeshManager object.
    1. In the Inspector window, click Add Component.
    2. Type "LightshipNavMeshManager" in the search window, then select it.
    3. Add the Main Camera to the Component. This is the center of where the manager scans for valid paths on the mesh.
  3. If you want to see the LightshipNavMesh, add a LightshipNavMeshRenderer component to NavMeshManager as well. This will render the LightshipNavMesh on-screen when the camera moves.
    1. In the Inspector window, click Add Component again.
    2. This time, search for "LightshipNavMeshRenderer" instead, then select it.
    3. Add the LightshipNavMeshManager to the Component.
    4. Create a material to be used for rendering the Navigation Mesh, and add it to the Component.
Lightship NavMesh Manager

You can also add the LightshipNavMeshManager prefab from the NavMesh sample project. For more information, see Sample Projects.

Now, if you press play in the editor, you should be able to see a grid of tiles being generated. Next, you will add an Agent that can move around on the Navigation Mesh.

Lightship NavMesh Visual
info

You can increase the Scan Range in the LightshipNavMeshManager to create a larger grid of tiles around the camera.

Adding an Agent to the LightshipNavMesh

To test out the LightshipNavMesh, we need to add an Agent to the scene to move around on it. The NavMesh sample project contains an Agent prefab that you can use for testing, but you may want to create your own instead.

To create an Agent prefab:

  1. Add an object to the scene to act as an Agent:
    1. In the Hierarchy, select the root of the scene.
    2. Right-click, then select Create Empty. Name the new Empty TestAgent.
  2. Add a LightshipNavMeshAgent and LightshipNavMeshAgentPathRenderer component to the new Agent.
    1. In the Hierarchy, select TestAgent.
    2. In the Inspector window, click Add Component. Search for "LightshipNavMeshAgent", then select it to add the component.
  3. Add a LightshipNavMeshAgentPathRenderer component to show the path the Agent can take in the scene.
    1. In the Inspector window, click Add Component, then search for "LightshipNavMeshAgentPathRenderer" and select it to add the component.
    2. Set the LightshipNavMeshAgent and the Material properties.
  4. Add a cube to represent the Agent:
    1. In the Hierarchy, right-click on TestAgent, then hover over 3D Object. For this example, choose Cube to add a basic cube as the testing Agent.
    2. In the Inspector, under the Transform window, shrink the cube by setting its Scale to (0.2, 0.2, 0.2).
    3. Change its Position to (0, 0.1, 0), so the bottom of the cube is sitting on (0, 0, 0).
    4. Uncheck the box next to Box Collider to disable it. This will prevent the Cube Agent from colliding with the generated mesh.
3D Cube Editor Properties
  1. Drag the Agent to the Assets window to make a prefab, then remove it from the scene.
LightshipNavMesh Agent

Create a Script to Control the Agent

To add a control script to the Agent:

  1. Create a script Asset to manage user input to control the agent.

    1. In the Assets window, right-click in empty space, then hover over Create and select C# Script.
    2. Name the new script NavMeshHowTo.
  2. Open the script in your code editor.

  3. Set up code to Handle Touch Inputs:

    1. Create a private Method named "HandleTouch".
    2. In editor, we'll use "Input.MouseDown" to detect mouse clicks.
    3. For phone, the "Input.GetTouch"
    private void HandleTouch()
    {
    // in the editor we want to use mouse clicks, on phones we want touches.
    #if UNITY_EDITOR
    if (Input.GetMouseButtonDown(0) || Input.GetMouseButtonDown(1) || Input.GetMouseButtonDown(2))
    #else
    //if there is no touch or touch selects UI element
    if (Input.touchCount <= 0)
    return;
    var touch = Input.GetTouch(0);

    // only count touches that just began
    if (touch.phase == UnityEngine.TouchPhase.Began)
    #endif
    {
    // do something with touches
    }
    }
  4. Convert touch points from the screen to 3D Coordinates

    1. Add a Camera field to the top of script:

      [SerializeField]
      private Camera _camera;
      note

      [SerializeField] allows private properties to be available in the Inspector window.

    2. This will use Unity's Camera.ScreenPointToRay function. Call the method in "HandleTouch" to create a ray pointing from the camera.

      #if UNITY_EDITOR
      Ray ray = _camera.ScreenPointToRay(Input.mousePosition);
      #else
      Ray ray = _camera.ScreenPointToRay(touch.position);
      #endif
    3. Check if the Ray can hit the mesh using "Physics.Raycast" and get the resulting point.

      {
      // do something with touches
      RaycastHit hit;
      if (Physics.Raycast(ray, out hit))
      {
      // use the 3D point to guide the Agent
      }
      }
  5. Guide your Agent using the 3D points from touches

    1. We'll need to instantiate an Agent from the prefab created earlier.
    2. Add a LightshipNavMeshAgent field to the top of class for the agent prefab:
      [SerializeField]
      private LightshipNavMeshAgent _agentPrefab;
    3. Add a private LightshipNavMeshAgent field under the Agent Prefab to be used as the instance of the Agent:
      private LightshipNavMeshAgent _agentInstance;
    4. The Agent Instance will be a specific occurrence of the Agent Prefab in the scene. The Prefab is merely used as a blueprint to create an Instance.
    5. If the Agent does not exist yet, it will be created at the hit point. Otherwise, make its new destination on the NavMesh the hit point.
      // do something with touches
      RaycastHit hit;
      if (Physics.Raycast(ray, out hit))
      {
      // use the 3D point to guide the Agent
      if (_creature == null )
      {
      _creature = Instantiate(_agentPrefab);
      _creature.transform.position = hit.point;
      }
      else
      {
      _agent.SetDestination(hit.point);
      }
      }
  6. Add the "HandleTouch" method to the Update method, so the script checks for touches every frame.

    void Update()
    {
    HandleTouch();
    }
  7. Attach the script to the NavMeshManager.

    1. Select your NavMeshManager GameObject in the Hierarchy, then click "Add Component" in the Inspector window.
    2. Search for "NavMeshHowTo", then select it to add the controller script to the prefab.
    3. Make sure to set the properties for Camera and Agent Prefab
    Lightship NavMesh Script in Editor
  8. Now you should be able to spawn and direct the cube to any tile on the Navigation Mesh.

    Lightship NavMesh with Agent Visualizer
  9. Let's make the NavMesh visuals optional to get a cleaner view. In the NavMeshHowTo script:

    1. Add a field to the LightshipNavMeshManager to get a reference to its renderer component.

      [SerializeField]
      private LightshipNavMeshManager _navmeshManager;
    2. Create a new method named "SetVisualization" that gets the NavMeshRenderer Components and sets their state.

      public void SetVisualisation(bool isVisualizationOn)
      {
      //turn off the rendering for the navmesh
      _navmeshManager.GetComponent<LightshipNavMeshRenderer>().enabled = isVisualizationOn;

      if (_agentInstance != null)
      {
      //turn off the path rendering on any agent
      _agentInstance.GetComponent<LightshipNavMeshAgentPathRenderer>().enabled = isVisualizationOn;
      }
      }
    3. Call this method through a UI Button or in a script.

Lightship NavMesh with Agent
Click here to show the final NavMeshHowTo script
using UnityEngine;
using Niantic.Lightship.AR.NavigationMesh;

/// SUMMARY:
/// LightshipNavMeshSample
/// This sample shows how to use LightshipNavMesh to add user driven point and click navigation.
/// When you first touch the screen, it will place your agent prefab.
/// Tapping a location moves the agent to that location.
/// The toggle button shows/hides the navigation mesh and path.
/// It assumes the _agentPrefab has LightshipNavMeshAgent on it.
/// If you have written your own agent type, either swap yours in or inherit from it.
///
public class NavMeshHowTo : MonoBehaviour
{
[SerializeField]
private Camera _camera;

[SerializeField]
private LightshipNavMeshManager _navmeshManager;

[SerializeField]
private LightshipNavMeshAgent _agentPrefab;

private LightshipNavMeshAgent _agentInstance;

void Update()
{
HandleTouch();
}

public void SetVisualization(bool isVisualizationOn)
{
//turn off the rendering for the navmesh
_navmeshManager.GetComponent<LightshipNavMeshRenderer>().enabled = isVisualizationOn;

if (_agentInstance != null)
{
//turn off the path rendering on the active agent
_agentInstance.GetComponent<LightshipNavMeshAgentPathRenderer>().enabled = isVisualizationOn;
}
}

private void HandleTouch()
{
//in the editor we want to use mouse clicks, on phones we want touches.
#if UNITY_EDITOR
if (Input.GetMouseButtonDown(0) || Input.GetMouseButtonDown(1) || Input.GetMouseButtonDown(2))
#else
var touch = Input.GetTouch(0);

//if there is no touch or touch selects UI element
if (Input.touchCount <= 0)
return;
if (touch.phase == UnityEngine.TouchPhase.Began)
#endif
{
#if UNITY_EDITOR
Ray ray = _camera.ScreenPointToRay(Input.mousePosition);
#else
Ray ray = _camera.ScreenPointToRay(touch.position);
#endif
//project the touch point from screen space into 3d and pass that to your agent as a destination
RaycastHit hit;
if (Physics.Raycast(ray, out hit))
{
if (_agentInstance == null )
{
_agentInstance = Instantiate(_agentPrefab);
_agentInstance.transform.position = hit.point;
}
else
{
_agentInstance.SetDestination(hit.point);
}
}
}
}
}