Skip to content

Commit 8da4530

Browse files
author
András Kurai
committed
add vscode launch.json for debugging
1 parent e6f8e9d commit 8da4530

File tree

1 file changed

+54
-0
lines changed

1 file changed

+54
-0
lines changed

.vscode/launch.json

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": "Unity Editor",
9+
"type": "unity",
10+
"path": "UnityResourceGenerator/Library/EditorInstance.json",
11+
"request": "launch"
12+
},
13+
{
14+
"name": "Windows Player",
15+
"type": "unity",
16+
"request": "launch"
17+
},
18+
{
19+
"name": "OSX Player",
20+
"type": "unity",
21+
"request": "launch"
22+
},
23+
{
24+
"name": "Linux Player",
25+
"type": "unity",
26+
"request": "launch"
27+
},
28+
{
29+
"name": "iOS Player",
30+
"type": "unity",
31+
"request": "launch"
32+
},
33+
{
34+
"name": "Android Player",
35+
"type": "unity",
36+
"request": "launch"
37+
},
38+
{
39+
"name": "Xbox One Player",
40+
"type": "unity",
41+
"request": "launch"
42+
},
43+
{
44+
"name": "PS4 Player",
45+
"type": "unity",
46+
"request": "launch"
47+
},
48+
{
49+
"name": "SwitchPlayer",
50+
"type": "unity",
51+
"request": "launch"
52+
}
53+
]
54+
}

0 commit comments

Comments
 (0)