Page 1 of 1

Sequence Skips dialogue

Posted: Mon Sep 23, 2024 9:56 pm
by bakershah
Hello,

I am having an issue with the sequence tool in the dialogue editor nodes. I add audio to the dialogue line but it keeps skipping the dialogue and fast forwards it every tie I add anything to the sequence field. I looked into the default field showing delay and can't figure it out. How can I have the audio and text play without skipping?

Re: Sequence Skips dialogue

Posted: Tue Sep 24, 2024 8:14 am
by Tony Li
Hi,

Inspect the Dialogue Manager's Display Settings > Camera & Cutscene Settings, and tick Report Missing Audio Files.

This will tell the Dialogue System to log a warning if the Audio()/AudioWait() command can't access the audio file you specified.

Also - The Audio() command attempts to start the specified audio clip and then immediately ends, allowing the audio clip to play on its own. It does not wait for the audio clip to finish. To wait for the audio clip to finish before advancing the conversation, use AudioWait().

As a general practice, I recommend using entrytags for audio.

Also, as a failsafe, you can add a Delay({{end}}) command so the dialogue entry will delay for a duration based on the text length, in addition to waiting for the audio. For example, DemoScene1's Default Sequence is:

Code: Select all

Delay({{end}});
AudioWait(entrytag)