- Home /
How can I combine multiple audio clips to form one audio clip? OR another method to control a string of audioclips as one.
I have a bunch of audio clips, say 4 that I need to play in a certain order. These 4 audio clips are input as public variables. I know I can play them back to back by using audio.play and waitUntil, but I also want to be able to control this entire strip as a single audio clip.
So essentially I need a motherclip = clip1 + clip2 + clip3 + clip4
so that I can use the audio control methods such as motherclip.play, motherclip.pause, motherclip.stop etc.
I have an inkling that it'll need the audioclip.getdata and setdata, probably with some sort of an audioclip array but can't figure out how to use these functions.
Please help!
Your answer
Follow this Question
Related Questions
Check scilence in audio clip using FFT. 0 Answers
Need help to play a random explosion sound from an array. 1 Answer
How to generate waveform from AudioClip? 2 Answers
Loading MP3's into an Audio Array and assigning them to members of a GameObject Array 1 Answer
It is possible to start a streaming AudioClip not from the beginning ? 1 Answer