Error on the Path script??

I posted this in Answers but got no replies, so here goes nothing…

How do I fix the error “The type of namespace name ‘PathRuntime’ could not be found.”? I got this error when I was trying to complete the pathfinder that AngryAnt has created a while back. I was trying to add the script titled “Demo Seeker” and this message came up:

Assests/Path/DemoSeeker.cs(3,7): error CS0246: The type or namespace name ‘PathRuntime’ could not be found. Are you missing a using directive or an assembly reference?

The script directly from AngryAnt is attached, I really need this pathfinder for the project I am working on, so if you had Path and got it to work, then please let me know what you did/how I can fix this issue

1296161–59858–$DemoSeeker.cs (1.78 KB)

Is PathRuntime.cs in the same folder as DemoSeeker.cs?

No, there is no PathRuntime.cs only a PathRuntime.csproj…

Well that was easy then… your script has using PathRuntime;
so…

So do I just completely remove the “using PathRuntime” from the script? (please excuse the fact I’m a major noob) It would be really nice if you just tell me what I should do to remove this error, because once this error is removed I know what to do.

In the time it took you to post this question you could have tried it and seen the result…

What the error is telling you is that you are referencing either a class or a namespace called PathRuntime that isn’t declared anywhere in your project (in the case of namespace) or isn’t imported to your class file (in the case of object). For a similar example, remove using UnityEngine; from one of your class files and then try to reference something like a Transform or extend MonoBehaviour.

“using” statements are just ways to shortcut using a fully qualified namespace all the time.