コード例 #1
0
ファイル: Ball.cs プロジェクト: pkunjam/Breakout-PC
 /// <summary>
 /// Destroy ball when death timer finishes
 /// </summary>
 void HandleDeathTimerFinished()
 {
     // invoke event and destroy self
     ballDied.Invoke();
     Destroy(gameObject);
 }
コード例 #2
0
ファイル: Ball.cs プロジェクト: Police-Cat/WackyBreackout
 private void HandleDeathTimerFinished()
 {
     // spawn new ball and destroy self
     ballDied.Invoke();
     Destroy(gameObject);
 }