During conversations, I can see that the OnConversationStart message is sent just after the first OnConversationLine message. I guess this is normal behavior, looking at the StartConversation method of the DialogueSystemController script, the method:
Code: Select all
m_conversationController.Initialize(model, view, reevaluateLinksAfterSubtitle, displaySettings.inputSettings.alwaysForceResponseMenu, OnEndConversation);
Usually, this is not a big problem for me because the first OnConversationLine message only concerns the START dialogue node, which is always empty. This is what I see in a test scene. But in my game, it looks that the 2nd dialogue line (said by a NPC) OnConversationLine message is also broadcast before OnConversationStart message.
After some investigations, I found the reason: the START node default sequence is set to Continue() when importing from articy. When creating a conversation from scratch directly in the DialogueDatabase, the default sequence is None().
Shoudn't the sequence for the START node be consistent? I read on the online manual that I could add a Sequence property to my Dialogue nodes in articy , I suppose it will fix the problem. But is it safe to do so (I wonder if using the Continue() sequence by default when importing from articy was intentional, or not...).
Thanks!