Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 460 Bytes

README.md

File metadata and controls

12 lines (8 loc) · 460 Bytes

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);

test this out...