Page 1 of 1

Dialogue System, activate event scene after dialogue entry/note is completed/finished

Posted: Tue Apr 22, 2025 12:52 pm
by edybtt
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!

Re: Dialogue System, activate event scene after dialogue entry/note is completed/finished

Posted: Tue Apr 22, 2025 2:00 pm
by Tony Li
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:

Code: Select all

SendMessage(Quest_Completed, 3, Quests)@{{end}}