Max nodes limit for seeker

I want to set a max nodes limit for the seeker which means if I set 5 for a seeker then it accepts the path length less or equals to 5 or return path.error = true.

Hi

This is not possible using a configuration option, but you could do this in your OnPathComplete callback:

if (path.path.Count > 5) {
    path.FailWithError("Too long");
}