Custom Navigation Areas and Query Filters

This guide shows how to use Custom Areas and Query Filters with the Navigation System.

Choose your operating system:

Windows

macOS

Linux

Prerequisite Topics

In order to understand and use the content on this page, make sure you are familiar with the following topics:

Overview

Unreal Engine's Navigation System allows Agents to traverse the Level using a Navigation Mesh for pathfinding.

The Agent determines the most optimal route to its destination by comparing the cost of each navigation polygon within the Navigation Mesh. If all polygons along the route are of equal cost, then the Agent will choose the shortest path to its target (usually a straight line).

You can influence the cost of the navigation polygons using Navigation Modifier Volumes and Navigation Query Filters .

Navigation Modifier Volumes use Area Classes to determine the Default Cost multiplier of navigation within the volume. Area Classes also define the Fixed Area Entering Cost , which is the initial cost applied when the Agent enters the area. You can create as many Area Classes as needed to influence how your Agents navigate your Level.

Navigation Query Filters contain information about one or more Area Classes and can override the cost values, if needed. You can create as many Query Filters as needed to further customize how your Agents navigate your Level.

Goals

In this Quick Start Guide you will learn to create and use your own Navigation Areas and Query Filters to influence how different Agents traverse the same Navigation Mesh toward their targets.

Objectives

  • Create three custom Area Classes to use with Navigation Modifier Volumes.

  • Create two Navigation Query Filters to be used by Agents.

1 - Creating Custom Area Classes

  1. Go to the Place Actors panel and search for Nav Modifier Volume . Drag the Nav Modifier Volume Actor into your Level and place it on the Floor mesh. Go to the Details panel and set the Scale to X = 2, Y = 6, Z = 1.

    Drag the Nav Modifier Volume Actor into your Level

    Set the Scale to X = 2, Y = 6, Z = 1

  2. Inside the Content Browser , right-click and select Blueprint Class under the Create Basic Asset section.

    Select Blueprint Class under the Create Basic Asset section

  3. Inside the Pick Parent Class window, go to the All Classes section and expand the arrow. Search for and select Nav Area. Click Select and name the Blueprint BP_Area_Neutral .

    Go to the All Classes section and expand the arrow. Select Nav Area

    Name the Blueprint BP_Area_Neutral

  4. Repeat the previous two steps twice and name these Blueprints BP_Area_Lane1 and BP_Area_Lane2.

  5. Double-click the BP_Area_Lane1 Blueprint to open it. You can modify the Default Cost multiplier when navigating inside the volume and the Fixed Area Entering Cost . For this example, leave the settings at their default values.

  6. Click the Draw Color bar and select a blue color. Compile and save .

    Click the Draw Color bar and select a blue color

  7. Repeat the step above for the BP_Area_Lane2 Blueprint and change its Draw Color to red .

  8. Select the Nav Modifier Volume in your Level and on the Details panel, click the Area Class dropdown and select BP_Area_Neutral .

    Select BP_Area_Neutral from the dropdown

    Notice how the area changes color in the Level

  9. Duplicate the Nav Modifier Volume and follow the steps above to change the Area Class to BP_Area_Lane1 . Move the volume to the side to create a lane as seen below.

    Duplicate the Nav Modifier Volume and follow the steps above to change the Area Class to BP_Area_Lane 1

  10. Repeat the previous step to duplicate the Nav Modifier Volume and set the Area Class to BP_Area_Lane2 . Move the volume to the side to create a lane as seen below.

    Duplicate the Nav Modifier Volume and follow the steps above to change the Area Class to BP_Area_Lane 2

  11. You can now experiment by changing the values of each Area Class to influence the Agent's path to its target. In the example below, the Default Cost of BP_Area_Neutral and BP_Area_Lane1 are both set to 4.

    In this example the Default Cost of BP_Area_Neutral and BP_Area_Lane 1 are both set to 4

  12. In this example, the Default Cost of BP_Area_Neutral and BP_Area_Lane2 are both set to 4.

    In this example the Default Cost of BP_Area_Neutral and BP_Area_Lane 2 are both set to 4

Section Results

In this section you created three custom Area Classes and placed them in your Level. You also changed the Default Cost values of these Area Classes to influence the Agent's navigation towards its target.

2 - Creating Navigation Query Filters

  1. Inside the Content Browser , right-click and select Blueprint Class under the Create Basic Asset section.

    Select Blueprint Class under the Create Basic Asset section

  2. Inside the Pick Parent Class window, go to the All Classes section and expand the arrow. Search for and select Navigation Query Filter. Click Select and name the Blueprint BP_QueryFilter1 .

    Search for and select Navigation Query Filter

    Name the Blueprint BP_QueryFilter 1

  3. Double-click the BP_QueryFilter1 Blueprint to open it. Click on the Add (+) button next to the Areas section to expand it.

    Click on the Add button next to the Areas section to expand it

  4. Click the dropdown next to Area Class and search for and select BP_Area_Neutral . Enable the Travel Cost Override checkbox and enter 100 .

    Click the dropdown next to Area Class and search for and select BP_Area_Neutral

    Enable the Travel Cost Override checkbox and enter 100

  5. Repeat the previous step to add BP_Area_Lane1 and BP_Area_Lane2 to the list. For BP_Area_Lane2 , enable the Travel Cost Override checkbox and enter 100.

    Repeat the previous step to add BP_Area_Lane 1 and BP_Area_Lane 2 to the list

  6. In the Content Browser , right-click the BP_QueryFilter1 Blueprint and select Duplicate .

  7. Double-click the BP_QueryFilter2 Blueprint to open it. For the Area Class BP_Area_Lane1 , enable the Travel Cost Override checkbox and set its value to 100. For the Area Class BP_Area_Lane2 , disable the Travel Cost Override checkbox.

    Enable Travel Cost Override for BP_Area_Lane 1 and disable Travel Cost Override for BP_Area_Lane2

  8. Compile and save the Blueprint.

  9. Select the BP_NPC Blueprint in your Level and on the Details panel, click the Filter Class dropdown, then search for and select BP_QueryFilter1 .

    Click the Filter Class dropdown, then search for and select BP_QueryFilter 1

  10. Click Simulate and observe how the Agent is now using the Navigation Query Filter to determine the best route to its destination. Since BP_QueryFilter1 has the BP_Area_Lane1 as the cheapest route, the Agent uses it to reach the Sphere.

    Since BP_QueryFilter 1 has the BP_Area_Lane 1 as the cheapest route, the Agent uses it to reach the Sphere

  11. Select the BP_NPC Blueprint and change the Filter Class to BP_QueryFilter2 . Click Simulate and observe how the Agent now uses BP_Area_Lane2 area to reach its destination.

    The Agent now uses BP_Area_Lane 2  area to reach its destination

Section Results

In this section you created two Navigation Query Filters and added the three previous Area Classes . You also changed the cost values associated with the Area Classes to modify the Agent's navigation when using different Navigation Query Filters .

Help shape the future of Unreal Engine documentation! Tell us how we're doing so we can serve you better.
Take our survey
Dismiss