Project Report
Unity Pathfinders Visualized is a Unity project demonstrating key pathfinding algorithms. The project implements:
- Breadth-First Search (BFS): Efficient for the shortest path in unweighted graphs.
- Bidirectional Breadth-First Search: Enhances BFS by searching from both start and end points.
- Depth-First Search (DFS): Useful in maze generation, exploring deeply before backtracking.
- Swarm Algorithm: Combines BFS and Dijkstra's Algorithm, effective in complex scenarios.
- Algorithm Simulations: Visualize BFS, Bidirectional BFS, DFS, and Swarm in action.
- Dynamic Grids: Test algorithms on various grid layouts and obstacles.
- Clone or download this repository.
- Open in Unity.
- Enable Gizmos in Unity for enhanced visualization.
- Run the scene to observe pathfinding simulations.
Note: Intended for Unity editor use only ,Gizmos is only used for editor.
- Customize experiments with different parameters.
- Conduct comparative studies between algorithms.