回答編集履歴

1

補足

2021/03/03 10:02

投稿

hogefugapiyo
hogefugapiyo

スコア3302

test CHANGED
@@ -21,3 +21,43 @@
21
21
  }
22
22
 
23
23
  ```
24
+
25
+
26
+
27
+ あと下記部分って意図した通りに動いてますでしょうか?
28
+
29
+ countを増やしてからifでチェックしてるので``count==0``は成立しないのかなとちょっと気になりました。
30
+
31
+ ```cs
32
+
33
+ if(Input.GetMouseButtonDown(0))
34
+
35
+ {
36
+
37
+ count++;
38
+
39
+ Debug.Log("クリック確認" + count + "回");
40
+
41
+ if(count == 0)
42
+
43
+ text.text = text0; // ここは処理される?
44
+
45
+ else if(count == 1)
46
+
47
+ text.text = text1;
48
+
49
+ else if(count == 2)
50
+
51
+ text.text = text2;
52
+
53
+ else if(count == 3)
54
+
55
+ text.text = text3;
56
+
57
+ else
58
+
59
+ return;
60
+
61
+ }
62
+
63
+ ```