For example, When an NPC is triggered by collider, I want to wait 1 second before playing conversation.
Thank you
How to wait for seconds before playing conversation ?
-
- Posts: 10
- Joined: Thu Feb 29, 2024 10:11 am
Re: How to wait for seconds before playing conversation ?
Hello,
Use a blank node for the first dialogue entry node (the node linked from <START>). Set its Sequence to:
Then link that node to the first node that has dialogue text.
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
-
- Posts: 10
- Joined: Thu Feb 29, 2024 10:11 am
Re: How to wait for seconds before playing conversation ?
Thank you Tony