Response Menu is not focused

Announcements, support questions, and discussion for the Dialogue System.
User avatar
Tony Li
Posts: 22900
Joined: Thu Jul 18, 2013 1:27 pm

Re: Response Menu is not focused

Post by Tony Li »

Hi,

Since that node is gray, it will be shown in the NPC subtitle panel. Add a typewriter effect to the NPC subtitle panel's subtitle Text GameObject. If the Subtitle Text has a UI Text element, add a UnityUITypewriterEffect. If it has a TextMeshProUGUI, add a TextMeshProTypewriterEffect. If it uses Text Animator for Unity, see the Text Animator integration,

Then make sure the node's Sequence will last long enough for the typewriter to finish. See: How To: Control the Duration of Subtitle Text
Saper
Posts: 70
Joined: Tue Jan 12, 2021 11:25 am

Re: Response Menu is not focused

Post by Saper »

Hi Tony

In my Dialogue Manager sytuation looks like this:
Default Sequence: Delay({{end}})
Default Player Sequence: nothing
Default Response Menu Sequence: nothing

Only when there is response menu Typewriter effect not working
User avatar
Tony Li
Posts: 22900
Joined: Thu Jul 18, 2013 1:27 pm

Re: Response Menu is not focused

Post by Tony Li »

The gray node has a blue play icon that indicates that it has a Sequence. What's in the Sequence field of the gray node?
Saper
Posts: 70
Joined: Tue Jan 12, 2021 11:25 am

Re: Response Menu is not focused

Post by Saper »

It's a sequence for channging portrait animation.
After cutting it out of the field and setting the sequence field to be empty, the typewriter effect works.

What can i do to have both? :D
User avatar
Tony Li
Posts: 22900
Joined: Thu Jul 18, 2013 1:27 pm

Re: Response Menu is not focused

Post by Tony Li »

Hi,

Include "{{default}}" in the Sequence to include the Default Sequence. Example:

Code: Select all

AnimatorPlay(Smile, speakerportrait);
{{default}}
Post Reply