Hey, I need to stop an audio when another audio turns on, im trying to make ringing and when I touch the phone the ringing stops, how do I do that? Heres part of my script
function OnControllerColliderHit(hit : ControllerColliderHit) { if(hit.collider.gameObject.tag == "hippo") { hit.collider.audio.clip = myAudioFile; hit.collider.audio.Play(); }
}