回答編集履歴

1

実装例が間違っていたので修正

2016/12/15 05:32

投稿

ishi9
ishi9

スコア1294

test CHANGED
@@ -26,11 +26,11 @@
26
26
 
27
27
  IEnumerator Pause(){
28
28
 
29
- OnPause();
29
+ Pauser.Pause();
30
30
 
31
31
  yield return new WaitForSeconds( 3.0f );
32
32
 
33
- OnResume();
33
+ Pauser.Resume();
34
34
 
35
35
  }
36
36