unity-pathfinding icon indicating copy to clipboard operation
unity-pathfinding copied to clipboard

Find paths in Unity Tilemaps with A* Search

Pathfinding

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

Download and Import the Pathfinding package then use AStar.FindPath() like so:

List<Vector3> path = AStar.FindPath(tilemap, startPos, endPos);