Module navmesh

Source
Expand description

Contains all structures and methods to create and manage navigation meshes (navmesh).

Navigation mesh is a set of convex polygons which is used for path finding in complex environment.

Structs§

Navmesh
See module docs.
NavmeshAgent
Navmesh agent is a “pathfinding unit” that performs navigation on a mesh. It is designed to cover most of simple use cases when you need to build and follow some path from point A to point B.
NavmeshAgentBuilder
Allows you to build agent in declarative manner.
NavmeshModificationContext
A temporary modification context which allows you to modify a navmesh. When the modification context is dropped, it recalculates navigation graph automatically.