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.
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.