You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the Pathfinding works by creating a path either on center of the tile or on edge of the tile. Add an option to force to grid so paths are created only the center of the tile. For example below, I'd want the path to be created by going a tile left and then a tile to the bottom (to not go through wall) - so 10 ft. Right now it's instead created to an intermediate point and getting a 5ft path instead
The text was updated successfully, but these errors were encountered:
There is a toggle now (v0.10.1) that will force the pathfinding to the grid. At the moment, it does this after the path is found. This means it will still find a path through spaces smaller than grid size and will force to grid only when it will not result in a collision with a wall. So maybe 90% of what you want.
It is theoretically possible for me to create a different pathfinding algorithm that will use only grid spaces. Most of the time, though, this is not what Foundry players actually want as it would not pathfind through smaller spaces (e.g., doorways not aligned with a grid, etc.). If I find some time I might try to set that up as an option, but it would take some effort.
Currently the Pathfinding works by creating a path either on center of the tile or on edge of the tile. Add an option to force to grid so paths are created only the center of the tile. For example below, I'd want the path to be created by going a tile left and then a tile to the bottom (to not go through wall) - so 10 ft. Right now it's instead created to an intermediate point and getting a 5ft path instead

The text was updated successfully, but these errors were encountered: