Bracket-Pathfinding Examples

astar

Source Code

A quick demonstration of A-star pathfinding in action. Demonstrates the minimum required for accurate A-star pathing.

astar_manhattan

Source Code

Demonstrates using Manhattan distances in A-Star, rather than regular Pythagoras.

dijkstra

Source Code

Demonstrates the usage of the Dijkstra maps feature by brightening areas close to starting points, and darkening those further away.

fov

Source Code

Demonstrates the Field-of-View functionality.