I've installed Unity, VS-2019, Net4.x.
After all, Intellisense know what when I write "Rig..." I mean RigidBody, but It doesn't autocomplete methods like OnTriggerExit() or even Start() and Update(). How can I enable it?
I've specified VS executable in unity preferences, net4.x and reloaded both unity and VS many times.
public class SomeScript : MonoBehaviour
{
private Rigidbody rb;
void Start ()
{
this.rb = GetComponent<Rigidbody>();
//this line autocompleted well
}
void OnTrigger... // doesn't autocomplete
}