回答編集履歴

1

" "ではなく' 'になっていたので修正

2020/05/05 08:02

投稿

fiveHundred
fiveHundred

スコア10152

test CHANGED
@@ -26,11 +26,11 @@
26
26
 
27
27
  {
28
28
 
29
- Debug.Log('A');
29
+ Debug.Log("A");
30
30
 
31
31
  StartCoroutine(Coroutine());
32
32
 
33
- Debug.Log('B');
33
+ Debug.Log("B");
34
34
 
35
35
  }
36
36
 
@@ -42,7 +42,7 @@
42
42
 
43
43
  yield return new WaitWhile(()=>waitVal);
44
44
 
45
- Debug.Log('C');
45
+ Debug.Log("C");
46
46
 
47
47
  }
48
48
 
@@ -76,11 +76,11 @@
76
76
 
77
77
  {
78
78
 
79
- Debug.Log('A');
79
+ Debug.Log("A");
80
80
 
81
81
  yield return new WaitWhile(()=>waitVal);
82
82
 
83
- Debug.Log('B');
83
+ Debug.Log("B");
84
84
 
85
85
  }
86
86