Skip to content

Commit caea164

Browse files
committed
Update VS code files
1 parent 366a63b commit caea164

File tree

3 files changed

+78
-71
lines changed

3 files changed

+78
-71
lines changed

.vscode/extensions.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"recommendations": [
3+
"visualstudiotoolsforunity.vstuc"
4+
]
5+
}

.vscode/launch.json

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

.vscode/settings.json

Lines changed: 19 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,21 @@
11
{
2-
"files.exclude":
3-
{
4-
"**/.DS_Store":true,
5-
"**/.git":true,
6-
"**/.gitmodules":true,
7-
"**/*.pidb":true,
8-
"**/*.suo":true,
9-
"**/*.user":true,
10-
"**/*.userprefs":true,
11-
"**/*.unityproj":true,
12-
"**/*.meta":true,
13-
"Library/":true,
14-
"library/":true,
15-
"obj/":true,
16-
"Obj/":true,
17-
"temp/":true,
18-
"Temp/":true
19-
}
2+
"files.exclude": {
3+
"**/.DS_Store": true,
4+
"**/.git": true,
5+
"**/.gitmodules": true,
6+
"**/*.pidb": true,
7+
"**/*.suo": true,
8+
"**/*.user": true,
9+
"**/*.userprefs": true,
10+
"**/*.unityproj": true,
11+
"**/*.meta": true,
12+
"Library/": true,
13+
"library/": true,
14+
"obj/": true,
15+
"Obj/": true,
16+
"temp/": true,
17+
"Temp/": true
18+
},
19+
"dotnet.preferCSharpExtension": true,
20+
"dotnet.defaultSolution": "UnityWebGL-LoadingTest.sln"
2021
}

0 commit comments

Comments
 (0)