Ejemplo n.º 1
0
 public void TurnOffThrusters()
 {
     if (_audioSource != null)
     {
         _audioSource.Stop();
     }
     LeftThurster.Pause();
     RightThurster.Pause();
 }
Ejemplo n.º 2
0
 public void TurnOnThrusters()
 {
     if (_audioSource != null)
     {
         _audioSource.Play();
     }
     LeftThurster.Play();
     RightThurster.Play();
 }