Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Game Development

NavMeshAgent, gives me error" type or namespace not found" game works though. Just curious about this error.

The full error is, " The type or namespace name 'NavMeshAgent' could not be found(are you missing a using directive or an assembly reference?)". The game runs fine for me but I am just curious as to why I receive an error in the compiler.(I am using Visual Studio)

1 Answer

It seems like you're missing the namespace that defines NavMeshAgent. Try adding u-" using UnityEngine.AI; " at the top of your script.