https://github.com/jackkimmins/project-pathfinder
My simple pathfinding algorithm that navigates between two points and avoids obstacles.
https://github.com/jackkimmins/project-pathfinder
astar-algorithm csharp pathfinding
Last synced: 3 months ago
JSON representation
My simple pathfinding algorithm that navigates between two points and avoids obstacles.
- Host: GitHub
- URL: https://github.com/jackkimmins/project-pathfinder
- Owner: jackkimmins
- Created: 2021-12-24T14:26:52.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-12-28T09:36:43.000Z (over 3 years ago)
- Last Synced: 2025-02-01T06:15:47.486Z (5 months ago)
- Topics: astar-algorithm, csharp, pathfinding
- Language: C#
- Homepage:
- Size: 172 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Project-Pathfinder
My simple pathfinding algorithm that navigates between two points and avoids obstacles.This project is nothing serious and I wouldn't suggest using it for anything important. Basically, it randomly generates a terrain grid and disperses several obstacles in the form of the letter 'X'. Then the pathfinder tries to navigate the most optimal path between the randomly set start and end points. On every step, it checks the 8 tiles surrounding its current position. Whatever tile has the lowest cost value and is not an obstacle is the one that it will pick.
## Mark2
![]()
## Mark1
![]()
![]()