I have two graphs setup and a small test maze with two paths aof different widths. The path for smaller agents is faster. But the seeker takes the fastest route no matter what graph it’s set to, including “none”.
The following code is called in start, both seekers have this script attached and im getting no errors. Both Seekers are in the same place, but are different objects to avoid accidentl getting incorrect references. GlobalData.enemTarget is just two vectors positioned at the maze exits.
path = seeker.StartMultiTargetPath(transform.position, GlobalData.enemyTarget.ToArray(), pathsForAll: false, callback: null);
path.BlockUntilCalculated();
The grey line is just a line renderer tracing the path,