9 public static class AudioUtils
20 public static void Play (
this AudioSource audio, AudioClip clip,
21 float volume = 1f,
float pitch = 1f,
float relativeStartTime = 0f)
24 audio.volume = volume;
27 if (relativeStartTime > -(clip.length / pitch) && relativeStartTime <= 0f)
29 if (relativeStartTime < 0f)
30 audio.time = -relativeStartTime * pitch;
46 public static void Play (
this AudioSource audio,
string clipId,
47 float volume = 1f,
float pitch = 1f,
float relativeStartTime = 0f)
49 var clip = Resources.Load<AudioClip>(clipId);
52 Play(audio, clip, volume, pitch, relativeStartTime);
63 public static AudioSource PlayPooledSound (
this GameObject go, AudioClip clip,
64 float volume = 1f,
float pitch = 1f)
66 return SoundPool.Play(clip, go, volume, pitch);
77 public static AudioSource PlayPooledSound (
this Component component, AudioClip clip,
78 float volume = 1f,
float pitch = 1f)
80 return SoundPool.Play(clip, component, volume, pitch);
91 public static AudioSource PlayPooledSound (
this GameObject go,
string clipId,
92 float volume = 1f,
float pitch = 1f)
94 return SoundPool.Play(clipId, go, volume, pitch);
105 public static AudioSource PlayPooledSound (
this Component component,
string clipId,
106 float volume = 1f,
float pitch = 1f)
108 return SoundPool.Play(clipId, component, volume, pitch);
Sound pool. Allows on-demand playing of 3D sounds, with sound properties based on prefab...