I have created a method that appear a subtitle on the screen and play a voice sound at the same time… But unity must await the completion of the implementation of the method and then continue.
Like this:
C#
void Update()
{
Legenda(1);
// then wait for the completion
Legenda(2);
...
}