4 using System.Collections.Generic;
15 public GameObject SourcePrefab;
17 List<PooledAudioSource> _freeSources;
19 public static AudioSource Play (
string clipId,
float volume = 1f,
float pitch = 1f)
21 return Play(clipId, Vector3.zero, volume, pitch);
24 public static AudioSource Play (AudioClip clip,
float volume = 1f,
float pitch = 1f)
26 return Play(clip, Vector3.zero, volume, pitch);
29 public static AudioSource Play (
string clipId, Vector3 position,
float volume = 1f,
float pitch = 1f)
31 var clip = Resources.Load<AudioClip>(clipId);
34 return Play(clip, position, volume, pitch);
39 public static AudioSource Play (AudioClip clip, Vector3 position,
float volume = 1f,
float pitch = 1f)
41 var source = _instance.GetFreeSource();
45 _instance._freeSources.Remove(source);
47 source.transform.position = position;
49 source.Play(clip, volume, pitch);
57 public static AudioSource Play (
string clipId, Component target,
float volume = 1f,
float pitch = 1f)
59 return Play(clipId, target.gameObject, volume, pitch);
62 public static AudioSource Play (AudioClip clip, Component target,
float volume = 1f,
float pitch = 1f)
64 return Play(clip, target.gameObject, volume, pitch);
67 public static AudioSource Play (
string clipId, GameObject target,
float volume = 1f,
float pitch = 1f)
69 var clip = Resources.Load<AudioClip>(clipId);
72 return Play(clip, target, volume, pitch);
77 public static AudioSource Play (AudioClip clip, GameObject target,
float volume = 1f,
float pitch = 1f)
82 var source = _instance.GetFreeSource();
86 _instance._freeSources.Remove(source);
88 source.Target = target.transform;
89 source.Play(clip, volume, pitch);
99 if (_freeSources.Count != 0)
100 return _freeSources[0];
102 var sourceGo = Instantiate(SourcePrefab) as GameObject;
104 if (sourceGo != null)
106 sourceGo.name = SourcePrefab.name;
107 sourceGo.transform.parent = transform;
110 source.SoundFinished += OnSoundFinished;
112 _freeSources.Add(source);
122 if (!_freeSources.Contains(source))
123 _freeSources.Add(source);
128 if (_instance == null)
131 _freeSources =
new List<PooledAudioSource>();
136 if (_instance ==
this)
Pooled sound source. Handles following a target, and notifying when complete.
Sound pool. Allows on-demand playing of 3D sounds, with sound properties based on prefab...