How do i fix the error "The type of namespace name 'PathRuntime' could not be found."?

So I was just fooling around with the latest version of pathfinder that AngryAnt created, and I got to the part where I needed to add the ‘DemoSeeker’ script, but it came up with the error written above. All that is says in the script is

using PathRuntime;

is there anything I can do to fix this error? I really need this Pathfinder.

Thank you

You are probably missing an assembly reference in your Unity project. Generally, large libraries will have a corresponding DLL file that they give you. You can put that in a “/Plugins” folder in your project, and Unity should be able to use the assembly namespace after that. A DLL file is essentially a “container” for all the various scripts in a binary form.

If you installed it through the Asset Store like I did, you can probably just delete the line:

using PathRuntime;

It seemed to work for me. :slight_smile: