Hello everyone, im new to unity, and im learning from Udemy, and this guy, hes using MonoDevelop (a built in C# ide for unity) and whenever hes typing, his nexts words shows up, like, the program is filling up for him, but mine doesnt do that, how do i enable that autofill?
MonoDevelop is no longer supported in Unity. The default IDE is now Visual Studio community edition:
In case the same thing happens with Visual Studio, navigate to this menu in Unity:
Edit > Preferences > External Tools
And under “External Script Editor”, make sure Visual Studio is selected, then select “Regenerate .csproj files”.
That autofill is called “intellisense” and may randomly cease to work at any time.
If it fails, it will generally fail precisely when you really need it.
Adding onto Vryk’s post above:
This may help you with intellisense and possibly other Visual Studio integration problems:
Sometimes the fix is as simple as doing Assets → Open C# Project from Unity. Other times it requires more.
Other times it requires you also nuke the userprefs and .vsconfig and other crufty low-value high-hassle files that Visual Studio tends to slowly damage over time, then try the above trick.
Barring all that, move on to other ideas:
https://discussions.unity.com/t/778503
Also, try update the VSCode package inside of Unity: Window → Package Manager → Search for Visual Studio Code Editor → Press the Update button
Also, this: https://discussions.unity.com/t/805330/7
Thank you both very much! I’ll download VS studio, and if i get an errors, ill make sure to create another post! Thanks fr the help!