Missing classes

Hey!

I’m trying out Unity for the first time and I’m trying to follow a tutorial to make a simple game. The author uses the class “Input”, but problem is that I can’t seem to find it within Visual Studio and it is not recognized whenever i try to use it.

I’m probably missing something obvious, but please forgive my inexperience.

Reference: Unity - Scripting API: Input

Either intellisense isn’t working or you are missing using UnityEngine; from the top of your class file. If you created the script in unity then opened it in visual studio, the using should be there.

This may help you with intellisense problems:

Solved it,thanks a lot! :slight_smile:

1 Like