I am following a tutorial about Unity and I see that the instructor has intellisense when writes the method\'s name.
However I have only intellisense with classes an
I would really like to clear things up a bit for everyone trying to get intellisense working with Visual Studio Code.
First of all I am writing this for Unity 2019.4.14 as it is the newest version.
These are the things you MUST do for this to work:
The reference assemblies for .NETFramework,Version=v4.7.1 were not found. To resolve this, install the Developer Pack (SDK/Targeting Pack) for this framework version or retarget your application.
dotnet
in the VSCode terminal.Now, what about Unity Code Snippets and Debugger for Unity extensions? Well these are useful helper extensions but they have nothing to do with Intellisense. The first is for quickly typping common Unity patterns and the second is for showing Unity Debug warnings and errors as you type instead of saving and going back to Unity and reading the console.
Hope this was of any help.