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

https://github.com/sturdyspoon/unity-pathfinding

Find paths in Unity Tilemaps with A* Search
https://github.com/sturdyspoon/unity-pathfinding

2d astar pathfinding unity

Last synced: 13 days ago
JSON representation

Find paths in Unity Tilemaps with A* Search

Awesome Lists containing this project

README

        

# Pathfinding
Find paths in Unity Tilemaps with A* Search based off Amit Patel's implementation.

Download and Import the Pathfinding [package](https://github.com/antonpantev/pathfinding/raw/master/Pathfinding.unitypackage) then use `AStar.FindPath()` like so:

```c#
List path = AStar.FindPath(tilemap, startPos, endPos);
```