Page 1 of 1

How to wait for seconds before playing conversation ?

Posted: Sat Mar 02, 2024 10:29 am
by hoangvm2307
For example, When an NPC is triggered by collider, I want to wait 1 second before playing conversation.
Thank you :D :D

Re: How to wait for seconds before playing conversation ?

Posted: Sat Mar 02, 2024 11:40 am
by Tony Li
Hello,

Use a blank node for the first dialogue entry node (the node linked from <START>). Set its Sequence to:

Code: Select all

SetDialoguePanel(false, immediate);
required SetDialoguePanel(true)@1;
Continue()@1
Then link that node to the first node that has dialogue text.

Re: How to wait for seconds before playing conversation ?

Posted: Sat Mar 02, 2024 12:04 pm
by hoangvm2307
Thank you Tony :D

Re: How to wait for seconds before playing conversation ?

Posted: Sat Mar 02, 2024 1:42 pm
by Tony Li
Glad to help!