Hi everyone,
We are currently working on a multiplayer fantasy shooter, and I’m just about to start work on implementing bots for people to practice against.
To handle the pathfinding part of the equation, I have been looking at this tool, and from what I have read so far it seems like a pretty good match for what we need it to do, but I have a few questions before jumping into the deep end.
-
How well does the pathfinding perform at avoiding dynamic obstacles? There will be players running around all over the place that the agent needs to avoid bumping into.
-
Is it relatively simple for an agent to get back onto the recast graph once it gets knocked off? There are several skills in our game that knocks characters around the map, allowing an agent to be knocked on top of trees, buildings and rocks. It should ideally be possible for that agent to get back onto the graph without it looking completely out of place.
-
How much control do you have over recast graphs when generating them at runtime? We have a map editor planned, which will allow both us and our players to make maps for the game in a tool that is separate from the unity editor, which means we have to rely on generating recast graphs only at runtime.
Thanks in advance!