问题描述
以某种方式,当我尝试对Unity项目使用Visual Studio中的C#调试功能时,Visual Studio不会显示带有正确选项的工具提示。相反,它显示了其他库中的函数在这种情况下对我不起作用。我担心我可能在其他功能和方法上遇到这个问题,例如,即使我在没有工具提示帮助的情况下编写Debug,当我尝试使用Debug.Log时,工具提示中的选项也不是我所拥有的一直在寻找。
如果您对我的代码不满意,这是通过Unity创建C#文件时得到的简单代码。
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Player : MonoBehavIoUr
{
// Start is called before the first frame update
private void Start()
{
Debug.Log("Hello");
}
// Update is called once per frame
private void Update()
{
Debug.Log("Goodbye");
}
}
仅出于说明目的,这是问题的示意图。它显示了“ System.diagnostics.Debug”中的Debug函数,但我希望它来自“ System.Collections”。