Home > Net >  Microsoft Visual Studio not Autocompleting Like in Tutorial
Microsoft Visual Studio not Autocompleting Like in Tutorial

Time:09-27

I am new and trying to follow a tutorial to make a game.

Tutorial as follows: enter image description here

Besides, check whether the default configuration has been set(details here: Configure Unity to use Visual Studio).

Other document to refer to: Intellisense for Unity API Message.

CodePudding user response:

Is your class inheriting from MonoBehaviour? You should have this at the top where you declare your class

public class MyClass : MonoBehaviour
  • Related