Hey,
In our game we have a Grid Graph that is generated based on 2D array without colliders using Grid Graph Rules. The rule basically adds a pass that sets nodes walkable based on what data we have in the array. It works great so far, even with the GridGraphMover (we’re using world streaming), however we also have a couple of objects in the world that is not part of the array, but we’d like agents to avoid them. Enabling collision check for the whole graph seems too expensive just for a couple of objects so I’d like to find some approach that let me change walkability of the nodes that are in the objects range (these objects don’t move after being streamed in). I saw the DynamicObstacle class, however if I understood the source code right those are ignored if the collision of the graph is disabled. I’d implement some system (a graph rule I think) where my obstacles can register themselves and the walkability would be set to false to nodes when they are in the range, but before that I wanted to ask: does the asset have any solution for such scenario?
Thanks in advance!