Is there a simple way to determine whether it is possible to get from some node A to another node B on a point or grid graph? Ideally I’m looking for a way to implement a method “bool canReachEndPoint(Vector2 startCoordinate, Vector2 endCoordinate)” - where it returns false iff there is no route from the desired starting point to the desired finish point.
Any ideas? Does something like this already exist?