- quest3.png (38.68 KiB) Viewed 482 times
Play subtitles and audio at the same time
-
- Posts: 11
- Joined: Fri Sep 07, 2018 10:24 pm
Play subtitles and audio at the same time
I want to Play subtitles and audio at the same time,But Sequence(Audio(FirstAudio/1)) interrupt the subtitles,How to solve it?
Re: Play subtitles and audio at the same time
Hi,
Change "Audio" to "AudioWait". Or, even better:
The first line will play the audio, staying on the node until it's done playing.
The second line will also stay on the node for a duration based on the text length.
The node will stay for the longest of both of those lines.
Change "Audio" to "AudioWait". Or, even better:
Code: Select all
AudioWait(FirstAudio/1);
Delay({{end}})
The second line will also stay on the node for a duration based on the text length.
The node will stay for the longest of both of those lines.
-
- Posts: 11
- Joined: Fri Sep 07, 2018 10:24 pm
Re: Play subtitles and audio at the same time
You're welcome!