Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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: 3 months 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);
```