Skip to content

Commit 3e92545

Browse files
author
David Arutiunian
committed
feat: implement restart
1 parent 3755e54 commit 3e92545

15 files changed

+907
-668
lines changed

.vscode/launch.json

+54
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": "/c:/Users/Xiaomi/Triangles/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)