Hi Tony
How do I end a conversation as soon as the sound is completed?
When I say sound i mean I added a sound clip into a conversation.
End animation/Conversation After sound ends
Re: End animation/Conversation After sound ends
If you're playing a sound using AudioWait(), then:
- If you don't require the player to click a continue button, set the Sequence to:
Code: Select all
AudioWait(yoursound)
- If you do require a continue button click, set the Sequence to:
Code: Select all
AudioWait(yoursound)->Message(Done); Continue()@Message(Done)
Code: Select all
AudioWait(yoursound)->Message(Done); StopConversation()@Message(Done)