Liberi
An exergame built for kids with CP!
AudioUtils.cs
1 using UnityEngine;
2 using Janus;
3 using System;
4 using System.IO;
5 
9 public static class AudioUtils
10 {
20  public static void Play (this AudioSource audio, AudioClip clip,
21  float volume = 1f, float pitch = 1f, float relativeStartTime = 0f)
22  {
23  audio.clip = clip;
24  audio.volume = volume;
25  audio.pitch = pitch;
26 
27  if (relativeStartTime > -(clip.length / pitch) && relativeStartTime <= 0f)
28  {
29  if (relativeStartTime < 0f)
30  audio.time = -relativeStartTime * pitch;
31 
32  audio.Play();
33  }
34  }
35 
46  public static void Play (this AudioSource audio, string clipId,
47  float volume = 1f, float pitch = 1f, float relativeStartTime = 0f)
48  {
49  var clip = Resources.Load<AudioClip>(clipId);
50 
51  if (clip != null)
52  Play(audio, clip, volume, pitch, relativeStartTime);
53  }
54 
63  public static AudioSource PlayPooledSound (this GameObject go, AudioClip clip,
64  float volume = 1f, float pitch = 1f)
65  {
66  return SoundPool.Play(clip, go, volume, pitch);
67  }
68 
77  public static AudioSource PlayPooledSound (this Component component, AudioClip clip,
78  float volume = 1f, float pitch = 1f)
79  {
80  return SoundPool.Play(clip, component, volume, pitch);
81  }
82 
91  public static AudioSource PlayPooledSound (this GameObject go, string clipId,
92  float volume = 1f, float pitch = 1f)
93  {
94  return SoundPool.Play(clipId, go, volume, pitch);
95  }
96 
105  public static AudioSource PlayPooledSound (this Component component, string clipId,
106  float volume = 1f, float pitch = 1f)
107  {
108  return SoundPool.Play(clipId, component, volume, pitch);
109  }
110 }
Sound pool. Allows on-demand playing of 3D sounds, with sound properties based on prefab...
Definition: SoundPool.cs:11