0
The problem is just this, I’m developing a new game by Unity and use Visual Studio Code as editor, and need to auto-complete to help, but even with the extensions "Debugger for Unity", "Unity Tools" and "Unity Code Snippets" the problem is the same, I’ve tried Ctrl + space and nothing. Here is an example where in line 12 I cannot write the contents of line 11 by auto-complete.
using UnityEngine;
using System.Collections;
using System.Collections.Generic;
public class PlayerController : MonoBehaviour
{
void Start(){
// ACESSAR UM COMPONENTE DO OBJ
GetComponent<CapsuleCollider2D>();
GetCo // ... O ERRO ESTÁ AQUI ;-;
}
void Update(){
}
}
You installed the
.Net Core
and theC# Extension
?– Leandro Angelo
Yes, both of them installed.
– Gabriel Amador
With me also happened this, I tried several things, so I installed the visual studio community 2019, after having done that Vscode started working perfectly.
– Thiago Garcia