Can I turn off the log output from seekers?

I have my seekers re-evaluate their paths every half-second as they’re moving toward moving targets (if there’s a better way to do that than just remaking the path each time let me know)

But this creates a lot of output in the console so my own debug strings get buried. How can I disable it?

Thanks

Hi

Yes, in A* Inspector -> Setting -> Path Log Mode (set that to None).

2 Likes

Excellent, thanks!

Can you do this via a script?

Yeah, AstarPath.active.logPathResults = PathLog.None

2 Likes