回答編集履歴

1

コードの記載

2020/05/15 07:19

投稿

mattrick
mattrick

スコア135

test CHANGED
@@ -1,3 +1,25 @@
1
+ ```ここに言語を入力
2
+
3
+ #if UNITY_EDITOR
4
+
5
+ Debug.Log("Unity Editor");
6
+
7
+
8
+
9
+ #elif UNITY_IPHONE
10
+
11
+ Debug.Log("Unity iPhone");
12
+
13
+ #else
14
+
15
+ Debug.Log("Any other platform");
16
+
17
+ #endif
18
+
19
+ ```
20
+
21
+
22
+
1
- こちらのサイト参考になるかと思い
23
+ こちらのサイト参考にした
2
24
 
3
25
  https://qiita.com/Ubermensch/items/75072ef89249cb3b30e7