Question about precomputation of path

There are two fixed nodes in the grid graph: nodeA and nodeB. What I want to do is precompute the path for every AIPath who want to travel from nodeA and nodeB.
the path I precomputed could be used by multiple AIPath at the same time and will not be returned to the PathPool.
Is it supported?

Hi

You can use the FloodPath and FloodPathTracer which do almost this. It precomputes the every path to a particular destination. Then the FloodPathTracer can be used to efficiently query for a path to that fixed destination from anywhere on the map. See FloodPath - A* Pathfinding Project