Hi there,
I have a game with primarily two levels: terrain and building interiors. The buildings are basically just one level up. I found that I can basically create the graphs necessary to allow an AI unit to traverse on a single graph at once (either just terrain or just inside buildings), but not know how to traverse across graphs. So, what I want to do is merge the two graphs into one or somehow link them together. I’m just using the free version of A* Pathfinding Project. I’m aware of the multilevel feature provided through the pro version, which would probably suit my needs, but is there any alternative method to do so with just the free version? I only need two graph levels. The other problem is my game dynamically loads the level and so I cannot manually create a graph.
Thank you!