Difference between revisions of "Navigation mesh"

From Team Fortress Wiki
Jump to: navigation, search
(Created page with "The navigation mesh, or navmesh for short, is used by AI entities such as bots, robots and bosses to find their way around the map. Trying to use the entities with...")
 
m (Mediawiki doesn't use markdown silly myself.)
Line 3: Line 3:
 
The navmesh is composed of a set of areas that define the accessible areas of the map and their properties. The areas are linked with directional edges to track which areas are reachable from each other.
 
The navmesh is composed of a set of areas that define the accessible areas of the map and their properties. The areas are linked with directional edges to track which areas are reachable from each other.
  
A basic navmesh can be generated automatically using the [[console command]] `nav_generate` but manual adjustments are likely needed.
+
A basic navmesh can be generated automatically using the [[console command]] {{code|nav_generate}} but manual adjustments are likely needed.

Revision as of 19:55, 30 October 2018

The navigation mesh, or navmesh for short, is used by AI entities such as bots, robots and bosses to find their way around the map. Trying to use the entities without a navmesh will lead to them not working.

The navmesh is composed of a set of areas that define the accessible areas of the map and their properties. The areas are linked with directional edges to track which areas are reachable from each other.

A basic navmesh can be generated automatically using the console command nav_generate but manual adjustments are likely needed.