4 using System.Collections.Generic;
15 public event PooledSoundFinishedHandler SoundFinished;
18 public Transform Target;
20 public void Play (AudioClip clip,
float volume,
float pitch)
23 audio.volume = volume;
26 StartCoroutine(PlayAsync());
29 private IEnumerator PlayAsync ()
33 while (audio.isPlaying)
38 if (SoundFinished != null)
47 transform.position = Target.position;
Pooled sound source. Handles following a target, and notifying when complete.