https://github.com/sebsowter/phaser-pathfinder
Find a path between two points using the A* algorithm.
https://github.com/sebsowter/phaser-pathfinder
Last synced: 4 months ago
JSON representation
Find a path between two points using the A* algorithm.
- Host: GitHub
- URL: https://github.com/sebsowter/phaser-pathfinder
- Owner: sebsowter
- Created: 2019-10-17T00:21:10.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-07-04T20:26:41.000Z (almost 2 years ago)
- Last Synced: 2025-01-05T23:14:08.511Z (6 months ago)
- Language: TypeScript
- Homepage: https://sebsowter.github.io/phaser-pathfinder/
- Size: 1.89 MB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Phaser 3 Pathfinder
Find a path between two points using the [A\* algorithm](https://en.wikipedia.org/wiki/A*_search_algorithm).

Inspired by [Sebastian Lague](https://twitter.com/sebastianlague)'s [coding tutorial on pathfinding](https://www.youtube.com/watch?v=-L-WgKMFuhE).
[View the demo](https://sebsowter.github.io/phaser-pathfinder/)
## Installation
Ensure you have [Node.js](https://nodejs.org) installed.
Clone this repo and `cd` to project directory.
```
npm i
```## Tasks
Run the development server to preview locally.
```
npm start
```Create a production build.
```
npm run build
```