質問編集履歴

1

json\.launchの内容を追記しました

2017/08/14 01:06

投稿

TS627
TS627

スコア19

test CHANGED
File without changes
test CHANGED
@@ -25,3 +25,77 @@
25
25
  ###補足情報(言語/FW/ツール等のバージョンなど)
26
26
 
27
27
  vscodeとUnityは両方とも最新バージョンにアップデートしています
28
+
29
+ json.launchの内容は以下のようになっています
30
+
31
+ ```json
32
+
33
+ {
34
+
35
+ "version": "0.2.0",
36
+
37
+ "configurations": [{
38
+
39
+ "name": "Unity Editor",
40
+
41
+ "type": "unity",
42
+
43
+ "request": "launch"
44
+
45
+ },
46
+
47
+ {
48
+
49
+ "name": "Unity Player",
50
+
51
+ "type": "unity",
52
+
53
+ "request": "launch"
54
+
55
+ },
56
+
57
+ {
58
+
59
+ "name": "OSX Editor",
60
+
61
+ "type": "unity",
62
+
63
+ "request": "launch"
64
+
65
+
66
+
67
+ }, {
68
+
69
+ "name": "Linux Player",
70
+
71
+ "type": "unity",
72
+
73
+ "request": "launch"
74
+
75
+ },
76
+
77
+ {
78
+
79
+ "name": "iOS Player",
80
+
81
+ "type": "unity",
82
+
83
+ "request": "launch"
84
+
85
+ },
86
+
87
+ {
88
+
89
+ "name": "Android Player",
90
+
91
+ "type": "unity",
92
+
93
+ "request": "launch"
94
+
95
+ }
96
+
97
+ ]
98
+
99
+ }
100
+
101
+ ```