Hi,
I've got a question for which I haven't found the exact answer so far. I'd like to delay the start of a dialogue using a sequence command in the START of the dialogue. Is there any built-in solution that would allow this? The only thing I managed to do so far still showed an empty UI, I'd like to delay the triggering of the conversation so that doesn't happen at all.
Also, please note our set up uses the same Dialogue Manager for many dialogues and only swaps the conversations before calling them, so we can't use Timed Events.
Thanks !
Dave
Delaying conversation using Sequencer
Re: Delaying conversation using Sequencer
Hi Dave,
Try setting the conversation's <START> node's Sequence to something like:
This will delay the conversation by 2 seconds.
Try setting the conversation's <START> node's Sequence to something like:
Code: Select all
SetDialoguePanel(false, immediate);
Delay(2);
SetDialoguePanel(true)@2
Re: Delaying conversation using Sequencer
This is incredibly elegant and fixes my problem (with a super quick answer time, really appreciate that !).
Thanks a lot Tony !
Dave
Thanks a lot Tony !
Dave
Re: Delaying conversation using Sequencer
Glad to help!