prettymuchbryce / easystarjs

An asynchronous A* pathfinding API written in Javascript.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

setDirectionalCondition can be more efficient if a Set is used

esromneb opened this issue · comments

The check for directional conditions uses a loop and would be much more efficient with a Set. Is this something you would accept a PR for?

Ah I see. Yes the directions themselves are a list of directions. We could make them a set. I think it's worthwhile.