Hi!
I'm using v2.
I'm currently developing a game where nearly every line is dubbed. So a typical pattern is:
'play voice hello.mp3',
'Hello!'
When we load the game from a save every voice (or a lot of them anyway) up to this point in the game is played. I managed to mitigate this by stoping playing voice before each new sound like:
'stop voice',
'play voice hello.mp3',
'Hello!'
Now it only plays one voice but not the correct one. It shows one line and plays a different one. So for example:
'stop voice',
'play voice hello.mp3',
'Hello!',
'stop voice',
'play voice nice.mp3',
'Nice to meet you!', // we save here
After loading the save we will see "Nice to meet you", but will hear "Hello" for some reason.
Am I doing something wrong? How can I fix this?