Is there a way to get the responses array from an active conversation?
Thanks.
Get responses from active conversation?
Re: Get responses from active conversation?
Hi,
Yes. Check DialogueManager.currentConversationState. There are two Response[] array properties: npcResponses and pcResponses. The player menu responses are in pcResponses.
You can also add a script with an OnConversationResponseMenu(Response[] responses) method to the Dialogue Manager or a conversation participant.
Yes. Check DialogueManager.currentConversationState. There are two Response[] array properties: npcResponses and pcResponses. The player menu responses are in pcResponses.
You can also add a script with an OnConversationResponseMenu(Response[] responses) method to the Dialogue Manager or a conversation participant.
Re: Get responses from active conversation?
Happy to help!