Nav Mesh: Difference between revisions
Jump to navigation
Jump to search
m (→NAV files) |
|||
| Line 12: | Line 12: | ||
==NAV files== | ==NAV files== | ||
{{ | {{Main|NAV}} | ||
Navigation Mesh data is stored in a [[NAV]] file corresponding to the map file ([[BSP|.bsp]]) for which it is used. For example, the nav mesh for <code>cstrike\maps\de_dust.bsp</code> is stored in <code>cstrike\maps\de_dust.nav</code>. | Navigation Mesh data is stored in a [[NAV]] file corresponding to the map file ([[BSP|.bsp]]) for which it is used. For example, the nav mesh for <code>cstrike\maps\de_dust.bsp</code> is stored in <code>cstrike\maps\de_dust.nav</code>. | ||
Revision as of 12:13, 13 February 2023
A Navigation Mesh (or shorter: nav mesh) is a data structure that stores data used for path finding, which is typically used by bots. In
Source, navigation meshes are used by the following entities:
…to realize what's navigable in their environment, and path to their desired destination.
NAV files
Main article: NAV
Navigation Mesh data is stored in a NAV file corresponding to the map file (.bsp) for which it is used. For example, the nav mesh for cstrike\maps\de_dust.bsp is stored in cstrike\maps\de_dust.nav.
Main article: Nav Mesh Editing
Main article: Nav Mesh Commands
The Navigation Mesh Editing is done in-game. A (new) .nav file can be generated with nav_generate (which requires sv_cheats 1 and nav_edit 1).
Game Specific SubVersions
| Game | Nav Mesh Class | Subversion | Notes |
|---|---|---|---|
| TheNavMesh | 0 | Garry's Mod is using the base navigation mesh (It doesn't use it's own implementation unlike Valve games) | |
| CSNavMesh | 1 | * Appends approach area data to each area. | |
| CTFNavMesh | 2 | Appends TF2-specific attribute flag to area data. | |
| TerrorNavMesh | 13 | ||
| TerrorNavMesh | 14 |
See also
- Navigation Mesh Console Command Reference
- List of L4D Series Nav Mesh Attributes
- L4D Level Design/Nav Meshes
- L4D Level Design/Nav Flow
- L4D Level Design/Advanced Nav Editing
External Links
- Official forums for the bot system (down) - Archived version.
- Waypointing for CS:S Bots/Hostages (Edit Life)