Hi Guys , i have a player object and obstacle object and i use this code
AudioSource blip;
void Start()
{
blip = GetComponent();
}
void OnCollisionEnter()
{
blip.Play();
}
i implement it but the blip sound plays way before collision (implementation either on player or obstacle)
Thanks for your time