|
1 |
| -# unity-dijkstras-pathfinding |
| 1 | +# Unity Dijkstra's Pathfinding |
| 2 | + |
2 | 3 | Dijkstra's Pathfinding Algorithm Unity Implementation.
|
| 4 | + |
| 5 | +It is the implementation of [Dijkstra's Pathfinding Algorithm](https://en.wikipedia.org/wiki/Dijkstra%27s_algorithm) in [Unity (Game Engine)](https://unity3d.com) that let's you find the shortest path between two Nodes in a Graph. |
| 6 | + |
| 7 | + |
| 8 | + |
| 9 | +In this example we are going to find the shortest path from **Node A** to **Node F**: |
| 10 | + |
| 11 | + |
| 12 | + |
| 13 | +In this example we will try to follow the path using a simple Cube object: |
| 14 | + |
| 15 | + |
| 16 | + |
| 17 | +## Getting Started |
| 18 | + |
| 19 | +- [Download](#download) the project |
| 20 | +- Open in Unity |
| 21 | +- Go to Demo scene |
| 22 | +- [See Usage](#usage) |
| 23 | + |
| 24 | +## Download |
| 25 | + |
| 26 | +You have two choices for downloading this repository: |
| 27 | + |
| 28 | +1. Clone (Run the below command in Terminal or Command Prompt) |
| 29 | + |
| 30 | +```bash |
| 31 | +git clone https://github.com/EmpireWorld/unity-dijkstras-pathfinding.git |
| 32 | +``` |
| 33 | + |
| 34 | +2. [Download ZIP](https://github.com/EmpireWorld/unity-dijkstras-pathfinding/archive/master.zip) |
| 35 | + |
| 36 | +## Usage |
| 37 | + |
| 38 | +### Editor Usage |
| 39 | + |
| 40 | +Click on **Graph** object to use the Editor Integration. |
| 41 | + |
| 42 | +### Runtime Usage |
| 43 | + |
| 44 | +You can use the Graph **GetShortestPath** method to get the shortest path and follow it: |
| 45 | + |
| 46 | +```csharp |
| 47 | +Path path = myGraph.GetShortestPath ( start, end ); |
| 48 | +for ( int i = 0; i < path.nodes.Count; i++ ) { |
| 49 | + Debug.Log ( path.nodes [i] ); |
| 50 | +} |
| 51 | +Debug.LogFormat ( "Path Length: {0}", path.length ); |
| 52 | +``` |
| 53 | + |
| 54 | +Check the [Follower Script](https://github.com/EmpireWorld/unity-dijkstras-pathfinding/blob/master/Assets/Scripts/Follower.cs) for usage example. |
| 55 | + |
| 56 | +## License |
| 57 | + |
| 58 | +MIT @ [Hasan Bayat](https://github.com/EmpireWorld) |
| 59 | + |
| 60 | +Made with :heart: by [Hasan Bayat](https://github.com/EmpireWorld) |
0 commit comments