You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This Unity project showcases A* pathfinding visualization.
It uses a binary heap / priority queue for the open set and a hashset for the closed set, so it is "standard optimized".
The implementation is fully single-threaded.