Version 1.5
- A 3D voxel grid that's easily extendable with out of the box support for various movement types.
Version 1.4
- Zero allocation finders! Managed path finding queries now have the option to reduce managed allocations, allowing them to be used without creating any garbage at all.
- Dijkstra algorithm supports edge modifiers.
- The NavMesh can now generate more straight paths for grid like meshes.
Version 1.3
- Managed Dijkstra finder
Version 1.2
- New graph: LineGraph, a versatile 3D waypoint system
- New graph: NodeGraph, a simple 3D node based waypoint system.
- Dramatic octree and quadtree performance improvements
Version 1.1
- NavMeshGraph: Fast welding of vertices together using Unity's Job system, useful for large graphs and frequent updates
- NavMeshGraph: Can be populated and calculated inside of a burst compiled job now, useful for frequent updates
- NavMeshGraph: AABB triangle overlap queries, useful for cutting out triangles in a given area
- Breaking change: The NavMeshGraph constructor using NativeArrays now makes an internal copy of the data. Which prevents memory safety issues and allows the graph to be generated on another thread.
- PlatformerGraph: Fast welding of vertices together using Unity's Job system, useful for frequent updates
- PlatformerGraph: Can be populated and calculated inside of a burst compiled job now, useful for frequent updates
- PlatformerGraph: Graph can be drawn using the PlatformerGraphDrawer with automatic joining of vertices, making it extremely easy to generate a graph on the fly
- Fast copying of NavMesh, Platformer Graph, Quad- and Octree
Version 1.0
- Completely customizable graph data structures using generic types
- Grids or any number of dimensions are supported
- Leverages Unity's Job system and the Burst compiler, so performance and multithreading by default
- Works in jobs and with Unity ECS by utilizing the core building blocks in the AnyPath.Native namespace.
- A managed layer on top of the native code that is extremely easy to use
- Fully automated memory management (Non-ECS only). No need to worry about multi threading or race conditions, even when rebuilding your graph structure live.
- "Evaluate Only" requests that skip reconstructing a path in cases where it is sufficient to only check if a path exists, saving resources!
- Native support for adding extra stops in between the start and the goal of a request.
- Planning by giving a request a set of target objects
- Target picking by evaluating a set of target objects. Automatically generating a path to it.
- Target picking by evaluating which target is closest on the graph.
- Validating and reserving targets (Non ECS) without race conditions.
- "Edge Modifiers" that allow for applying small changes to a graph without the need to rebuild the entire graph. A door being open or closed for instance.
- Batch pathfinding operations. Evaluate multiple paths in a single job.
- ALT heuristics for any type of graph, which can significantly speed up pathfinding on very large and complex graphs.
- Object pooling is used where possible, so very low GC pressure
- 2D square grid
- Hexagonal grid
- 3D navigation mesh with support for curved surfaces
- A specialized platformer 'waypoint' graph
- Full source code included
The built in graphs also come with some utility classes that are neccessary for them to work properly, which you can use for your own custom graphs or any other kind of use you see fit:
- Burst compatible quadtree and octree implementations optimized for raycast queries.
- A 3D mesh welder utility, which welds together very close vertices on meshes.
- Burst compatible priority queue
- String pulling algorithms for straightening paths on a navigation mesh
- String pulling algorithm for usage with realtime steering behaviour
- Various geometry and math related utility functions