Page 1 of 1

[Solved] How can you implement a dialogue for the player after choosing a dialogue button option?

Posted: Thu Jun 28, 2018 2:04 pm
by Japtor
Hi,

I have bought Dialogue System for Unity around 2 days ago for a game project. I am very newbie to it. However, I wanna say it is really helping me to create cool things! Thanks for creating it.

I have a question. When there is a conversation, after you or the player chooses an option, I will like the character to say some words before the NPC continues talking.

You know how to do it or where it is explained this part on the documentation?


Thanks,
Javier.

Re: How can you implement a dialogue for the player after choosing a dialogue button option?

Posted: Thu Jun 28, 2018 3:27 pm
by Tony Li
Hi Javier,

Thanks for buying the Dialogue System! I'm glad it's helping you create cool things!

Do you want the player character to show subtitle text after the player selects a response? If so, use these steps:

1. Inspect the Dialogue Manager and tick Display Settings > Subtitle Settings > Show PC Subtitles During Line.

2. In the conversation, inspect the response option node.
- Set Menu Text to the text for the response menu.
- Set Dialogue Text to the subtitle text to show when the player chooses this response.


Do you want the character to play audio? If so, use these steps:

1. Put the audio file in a folder named Resources.

2. Inspect the node. Drag the audio file into the Sequence field.

This will set the Sequence field to use an AudioWait() sequencer command, like the Demo scenes. The Demo scenes actually use a shortcut called entrytags, but I recommend getting familiar with the basic AudioWait() command before using entrytags.

Re: How can you implement a dialogue for the player after choosing a dialogue button option?

Posted: Fri Jun 29, 2018 4:41 am
by Japtor
Hi Tony,

I have solved the problem with your help! So, many thanks! :)

Regards,
Javier.

Re: [Solved] How can you implement a dialogue for the player after choosing a dialogue button option?

Posted: Fri Jun 29, 2018 9:16 am
by Tony Li
Glad to help!