Sequencer firing too late

Announcements, support questions, and discussion for the Dialogue System.
Post Reply
WiktorWasowski
Posts: 3
Joined: Wed Sep 20, 2023 2:28 pm

Sequencer firing too late

Post by WiktorWasowski »

Hello,
I have an issue with the order at which the sequencer commands fire. Take a look at this example where I marked the order, which is incorrect.
obraz_2025-01-27_123334143.png
obraz_2025-01-27_123334143.png (274.5 KiB) Viewed 385 times
As you can see, after the NPC reveals their name (which is just a simplified scenario I'm testing with), I would expect the player to get the option to respond using the newly learned name. However, the condition for these two options are checked BEFORE the RevealMyName sequence fires on the NPC so the condition evaluation returns false. When I respond with the bottom option and check the condition again, now finally the correct answer is available.

I'm confused why it's so out of order. I'm also struggling with a very similar issue that

Code: Select all

DialogueManager.currentConversationState.subtitle.speakerInfo
doesn't return the actor associated with the dialogue node it's called from in some (most) occasions. So far I failed to find a universal way to get the current actor from within the dialogue text or sequence that never fails. That's also why I have explicit functions to get Actor name and Conversant name instead of just having something like Name which would return the current character's name. But I'm not sure these issues are related to the subject of this thread so I might create a separate thread for them unless you confirm that these issues are related and I can elaborate here.
User avatar
Tony Li
Posts: 22901
Joined: Thu Jul 18, 2013 1:27 pm

Re: Sequencer firing too late

Post by Tony Li »

Hi,

For the evaluation order issue, please tick the Dialogue Manager's Reevaluate Links After Subtitle or add an intermediate node as shown in Conversations Evaluate Conditions One Extra Level Ahead.

For speaker info, if you use an OnConversationLine(Subtitle) method in a script on the Dialogue Manager or either primary participant's GameObject, it will called at the correct time where the speaker is what you expect. Example:

Code: Select all

void OnConversationLine(Subtitle subtitle)
{
    Debug.Log($"{subtitle.speakerInfo.Name} says: {subtitle.formattedText.text}");
}
Post Reply