Liberi
An exergame built for kids with CP!
PooledAudioSource.cs
1 using UnityEngine;
2 using System;
3 using System.Collections;
4 using System.Collections.Generic;
5 using System.Linq;
6 using LiberiNet;
7 
8 public delegate void PooledSoundFinishedHandler (PooledAudioSource source);
9 
13 public class PooledAudioSource : MonoBehaviour
14 {
15  public event PooledSoundFinishedHandler SoundFinished;
16 
17  [HideInInspector]
18  public Transform Target;
19 
20  public void Play (AudioClip clip, float volume, float pitch)
21  {
22  audio.clip = clip;
23  audio.volume = volume;
24  audio.pitch = pitch;
25 
26  StartCoroutine(PlayAsync());
27  }
28 
29  private IEnumerator PlayAsync ()
30  {
31  audio.Play();
32 
33  while (audio.isPlaying)
34  {
35  yield return null;
36  }
37 
38  if (SoundFinished != null)
39  SoundFinished(this);
40 
41  Target = null;
42  }
43 
44  void LateUpdate ()
45  {
46  if (Target != null)
47  transform.position = Target.position;
48  }
49 }
Pooled sound source. Handles following a target, and notifying when complete.