1. 添加全局代码抑制文件,修复Unity消息方法的静态分析误报 2. 新增Directory.Build.props配置,禁用构建时代码风格强制检查 3. 更新packages配置,添加Antigravity IDE包并升级Visual Scripting版本 4. 优化VSCode调试配置与开发环境设置 5. 添加EditorConfig统一代码格式规则
19 lines
458 B
JSON
19 lines
458 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Attach to Unity Editor",
|
|
"type": "unity",
|
|
"request": "attach",
|
|
"path": "${workspaceFolder}/Library/EditorInstance.json"
|
|
},
|
|
{
|
|
"name": "Attach to Unity Player",
|
|
"type": "unity",
|
|
"request": "attach",
|
|
"transportArgs": {
|
|
"port": 56000
|
|
}
|
|
}
|
|
]
|
|
} |