Image: https://ibb.co/gMvVkmSf
How can I make the scene event trigger exactly when the dialogue entry/node ends? I don't want it to activate at the beginning when entering the node. Thanks!
Dialogue System, activate event scene after dialogue entry/note is completed/finished
Re: Dialogue System, activate event scene after dialogue entry/note is completed/finished
Hi,
Scene events always run at the start of the node. Here are two ways to run at the end of the node:
1. Add a blank node after the node. Move the UnityEvent to the blank node, and set the blank node's Sequence to: Continue()
2. Or use a sequencer command instead of a UnityEvent, since sequencer commands let you specify timing. For example, the sequence might look something like:
Scene events always run at the start of the node. Here are two ways to run at the end of the node:
1. Add a blank node after the node. Move the UnityEvent to the blank node, and set the blank node's Sequence to: Continue()
2. Or use a sequencer command instead of a UnityEvent, since sequencer commands let you specify timing. For example, the sequence might look something like:
Code: Select all
SendMessage(Quest_Completed, 3, Quests)@{{end}}