1. 程式人生 > >VScode編輯unity檔案的launch.json檔案配置

VScode編輯unity檔案的launch.json檔案配置

{

// 使用 IntelliSense 瞭解相關屬性。

// 懸停以檢視現有屬性的描述。

// 欲瞭解更多資訊,請訪問: https://go.microsoft.com/fwlink/?linkid=830387

"version": "0.2.0",

"configurations": [

{

"name": "Unity Editor",

"type": "unity",

"request": "launch"

},

{

"name": "Windows Player",

"type": "unity",

"request": "launch"

},

{

"name": "OSX Player",

"type": "unity",

"request": "launch"

},

{

"name": "Linux Player",

"type": "unity",

"request": "launch"

},

{

"name": "iOS Player",

"type": "unity",

"request": "launch"

},

{

"name": "Android Player",

"type": "unity",

"request": "launch"

}

]

}