westworld icon indicating copy to clipboard operation
westworld copied to clipboard

Make pathfinding more explicit by adding a pathfinding engine to an agent instead of using default one

Open TheoLvs opened this issue 2 years ago • 0 comments

Something like :


pathfinding1 = NaivePathfinding()
pathfinding2 = AStarPathfinding()

agent.set_pathfinding_engine(pathfinding1)
agent.move_towards(target)

TheoLvs avatar Sep 06 '21 23:09 TheoLvs