unity与vsc的坑
智能代码出问题
1. 要排除大文件
问题
提示C#
中警告
Some projects have trouble loading. Please review the output for more details.
解决
<ctr>+,
打开settings.json设置
{
"omnisharp.path": "latest",
"omnisharp.waitForDebugger": true//这个解决警告
}
2. 安装Debugger for Unity时出现407
原因是使用了代理,关闭代理就好
评论