Creating a custom PlayClipAtPoint function
The AudioSource.PlayClipAtPoint() function doesn't let us have a lot of control over the Audio Source itself. So I created a custom class for this. using UnityEngine; using UnityEngine.Audio; public class AudioClipPlayer : MonoBehaviour { [Head...