Clip in Clip out and pulling bolt sounds

Hello, I have some sounds that sound really good, problem is is that it comes in seperate audio files like clip in clip out, etc, I belive the asset GamesSounds - weapon pack also did this as well. How would I make those audio clips play at the right time when doing the reloading animation?? Or would I have to combine them using an audio program?

They’re probably separated so different weapons can have different reload speeds. Your best option may be to have an array of those sounds. I believe it would be something like public AudioClip[ ] reloadSounds; and then you can link the two files in an inspector. Have it set to clip out first (assuming that’s what you play first), then have some code checking the point where the clip is about to go in, in the animation and do something like audio.clip = reloadSounds[1]; and play the clip in sound.

Ok, thanks!

Is there any other way though?

Is the animation setup in unity using meccanim? You might be able to drag the sound effects right onto the meccanim animator in the timeline where the clip goes in or out.

Thats what I was thinking too, I’ll try