예제 #1
0
 public void OnAdaptorPushIn()
 {
     if (isUnconnected)
     {
         return;
     }
     //adaptor is pushed in...
     AdaptorAudioSource.PlayOneShot(PushInClip, PushInVolume);
 }
예제 #2
0
 public void OnAdaptorPullOut()
 {
     if (isUnconnected)
     {
         return;
     }
     //Adaptor is pulled out...
     AdaptorAudioSource.PlayOneShot(PullOutClip, PulloutVolume);
 }