Ejemplo n.º 1
0
 private void SetSoundEffect(AudioClip sfx)
 {
     if (sfx != null)
     {
         sfx.Volume = volume;
         time = 0;
     }
 }
Ejemplo n.º 2
0
 public void PlayOneShot(AudioClip clip)
 {
     throw new NotImplementedException();
 }
Ejemplo n.º 3
0
 public static void PlayClipAtPoint(AudioClip clip, Vector3 position, float volume)
 {
     throw new NotImplementedException();
 }
Ejemplo n.º 4
0
 public void PlayOneShot(AudioClip clip, float volumeScale)
 {
     throw new NotImplementedException();
 }
Ejemplo n.º 5
0
 public static void PlayClipAtPoint(AudioClip clip, Vector3 position)
 {
     PlayClipAtPoint(clip, position, 1);
 }