Skip to content

Latest commit

 

History

History
26 lines (21 loc) · 1.19 KB

README.md

File metadata and controls

26 lines (21 loc) · 1.19 KB

Unity Pathfinders Visualizer

BFS Example

Description

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.

Features

  • Algorithm Simulations: Visualize BFS, Bidirectional BFS, DFS, and Swarm in action.
  • Dynamic Grids: Test algorithms on various grid layouts and obstacles.

Getting Started

  1. Clone or download this repository.
  2. Open in Unity.
  3. Enable Gizmos in Unity for enhanced visualization.
  4. Run the scene to observe pathfinding simulations.

Note: Intended for Unity editor use only ,Gizmos is only used for editor.

Usage

  • Customize experiments with different parameters.
  • Conduct comparative studies between algorithms.

License