Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.59 KB

README.md

File metadata and controls

31 lines (23 loc) · 1.59 KB

Pathfinding

AI in Action View demo on YouTube

This is an opensource project that is a personal exploration of A* for grid based pathfinding. I'm working on this as part of hackathons and free time as a way to continue exploring my passion outside of my day job.

Goals:

  • Create an algorithm that can locate a target and avoid obstacles such as non-traversable objects, objects/materials that buff or debuff movement and moving obstacles.
  • Allow for dynamic and efficient updates to path as obstacles move or the target moves.

Stretch Goal:

  • Remove grid size limit and make algorithm build grid only around units based in a larger world container.
  • Have grid build using varying grid block sizes on low to high precision based on locality. e.g. if target is far away we only need an approximate area of low density to locate. As we move closer increase precision.

Controls for test scene

Key Action
Left Click Move target
Right Click & Drag Rotate Camera
WASD Pan Camera
R Respawn AI to random spawn points
Space Scatter AI paths

References for project

A* algorithm based off YouTube tutorial by Sebastian Lague https://www.youtube.com/watch?v=-L-WgKMFuhE&list=PLFt_AvWsXl0cq5Umv3pMC9SPnKjfp9eGW

Sebastian's original tutorial was made into a GitHub repo that can be found at: https://github.com/SebLague/Pathfinding