Beispiel #1
0
 public void Play()
 {
     if (_audioClip == null)
     {
         DebugManager.Debug(DebugType.Error, "The audioClip is null");
         return;
     }
     else
     {
         _audioClip.Play(volume, pitch, pan);
     }
 }