質問編集履歴
1
ご指摘ありがとうございます。コードを追加しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -50,11 +50,19 @@
|
|
50
50
|
|
51
51
|
{
|
52
52
|
|
53
|
+
//画面をタップしたら
|
54
|
+
|
55
|
+
if (Input.GetMouseButtonDown(0) == true)
|
56
|
+
|
57
|
+
{
|
58
|
+
|
53
59
|
//会話表示中なら消す
|
54
60
|
|
55
61
|
if (UI.flag_talking == true)
|
56
62
|
|
57
63
|
empty_scripts.GetComponent<UI>().DisAppear_lines();
|
64
|
+
|
65
|
+
}
|
58
66
|
|
59
67
|
}
|
60
68
|
|