简体   繁体   中英

Visual Studio Intellisense for UnityEngine not working

I am trying to write a script for Unity in C#. I created the script and then I opened it. When I typed in Ge , I don't get Unity methods (I only see GetHashCode and GetType ). I am looking for GetComponent . I tried writing the script (from a tutorial) and it works fine in Unity, so only the intellisense is not working. It also doesn't work for new Vector3() .

I am using Visual Studio Community 2019 (v 16.5.2).

The complete script is:

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class AddConstantVelocity : MonoBehaviour
{
    // Start is called before the first frame update
    void Start()
    {

    }

    // Update is called once per frame
    void Update()
    {
        GetComponent<Rigidbody>().velocity = new Vector3(2, 10, -6);   
    }
}

You need to specify VS Code as the default editor. Edit > Prefernces > External tools > External Script Editor

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM