- Home /
Answer by Meltdown · Mar 14, 2012 at 08:25 PM
Create a script with 5 AudioSources. Then call play on each AudioSource as you need.
Thank for answer, but I need to stream 5 five audios from a web. Something like this
public String[] ROO$$anonymous$$ = {"101","102","103","104","105"};
void Awake() {
for(int i = 0; i < 5; i++) {
audio_room[i] = "..../" + ROO$$anonymous$$[i] + ".ogg";
WWW www = new WWW(audio_room[i]);
audio.clip = www.GetAudioClip(false,true);
}
}
But it doesn't work.
Your answer
Follow this Question
Related Questions
Problem with streaming audio and play in trigger area 0 Answers
audio will not play if trigger collides 2 Answers
Play Audio Sound OnTriggerEnter 2 Answers
Need help on audio trigger. 2 Answers
Multiple Audio Sources On One Object 0 Answers