An open API service indexing awesome lists of open source software.

https://github.com/jeffvella/UnityAStarNavigation

An A* navigation system for Unity using burst compiled jobs for performance.
https://github.com/jeffvella/UnityAStarNavigation

Last synced: about 1 year ago
JSON representation

An A* navigation system for Unity using burst compiled jobs for performance.

Awesome Lists containing this project

README

          

# UnityAStarNavigation

An experimental 3D A* navigation system for Unity using burst compiled jobs.

##### Features:

* 3D A* Pathfinding queries.
* Custom Native 3D dense grid ontop of a single NativeArray
* Each query can specify its own area weights.
* Grid nodes can be assigned to many areas.
* Grid nodes can be added/removed from areas by volume with oriented bounding boxes.
* Grid nodes can be generated for terrain by mapping to a Unity NavMesh.
* Custom NativePriorityQueue

Note: Project was created with Unity 2019.3, older versions may not work.