Local avoidance CS0246 error

So I was messing with local avoidance (I have pro), and when I got to the step where you create the SimpleRVOAI I got the following error.

error CS0246: The type or namespace name `RVOController’ could not be found.

This project is completely empty except for A* and my one new script. I tried before in another project and had the same issue. I’ve re-installed unity, rebuilt my project with the new version of A*, nothing fixes it. Could use a pointer. Thanks.

Hi

Ah, it looks like I have forgot to update the documentation after I moved the RVOController into a namespace.

Adding

using Pathfinding.RVO;

to the top of the script should fix it.

Thanks!