Search found 8 matches

by cruzsoma
Sat May 10, 2025 10:08 pm
Forum: Dialogue System for Unity
Topic: Player Animated Portrait not show when it's response menu.
Replies: 5
Views: 1526

Re: Player Animated Portrait not show when it's response menu.

Thanks for reply! Still get same result after changed the settngs: 1. Set the PC Subtitle Panel's and NPC Subtitle Panel's Visibility dropdowns to Always From Start. 2. UNassign the Portrait Image from the response menu panel's StandardUIMenuPanel component. 3. (Optional) I ticked off the Skip PC Su...
by cruzsoma
Thu May 08, 2025 1:52 am
Forum: Dialogue System for Unity
Topic: Player Animated Portrait not show when it's response menu.
Replies: 5
Views: 1526

Re: Player Animated Portrait not show when it's response menu.

The warning " Animator does not have an Animator Controller " comes from the Player's Portrait Image . And the Player Panel(PC Panel) and Response Menu Panel use same Portrait Image. I ll call it PC Panel and PC Portrait Image below. Here is the settings of 2 panels: 1. Player Panel(PC Pan...
by cruzsoma
Tue May 06, 2025 9:01 am
Forum: Dialogue System for Unity
Topic: Player Animated Portrait not show when it's response menu.
Replies: 5
Views: 1526

Player Animated Portrait not show when it's response menu.

Hi, I followed this video to setup the animated portrait: https://www.youtube.com/watch?v=8jNQXnyJiBU . The PC/NPC animated portrait both works well with no response menu conversation. But when it shows a response menu, after I clicked 1 response, I ll got a warning " Animator does not have an ...
by cruzsoma
Tue May 06, 2025 2:36 am
Forum: Dialogue System for Unity
Topic: Respone selection and focus issue
Replies: 2
Views: 475

Re: Respone selection and focus issue

Just solved by enable the Input Device Manager Component...
It's just a simple mistake...

For any one who have same problem. Just check you Input Device Manager is available!
by cruzsoma
Tue May 06, 2025 1:44 am
Forum: Dialogue System for Unity
Topic: Respone selection and focus issue
Replies: 2
Views: 475

Respone selection and focus issue

Update: Please ignore this topic. Just a simple mistake and already solved... Hi, I got some problems about the response menu selection and focus. 1. When I trying to select 1 of the responses. It will looks like multi of them selected. One by mouse, one by maybe keyboard? I thought so because I ca...
by cruzsoma
Sat May 03, 2025 11:12 am
Forum: Dialogue System for Unity
Topic: Alert with icon.
Replies: 4
Views: 370

Re: Alert with icon.

Thanks for your help!
Just get the localization with dialogue system works!
by cruzsoma
Thu May 01, 2025 10:50 am
Forum: Dialogue System for Unity
Topic: Alert with icon.
Replies: 4
Views: 370

Re: Alert with icon.

Em... Seems I got it by this code :shock: : var dialogueUI = DialogueManager.Instance.DialogueUI as CustomDialogueUI; dialogueUI.ShowIconAlert(message, duration, icon); And it works! But I still want to know if there is any better approach. Especially I want to manage the alert localization with Loc...
by cruzsoma
Thu May 01, 2025 7:56 am
Forum: Dialogue System for Unity
Topic: Alert with icon.
Replies: 4
Views: 370

Alert with icon.

Hi, I have some problem about add sprite icon into the alert message. So come to ask some advices. I checked this topic: https://www.pixelcrushers.com/phpbb/viewtopic.php?p=32925&hilit=alert+sprite#p32925 Following your advice, I created a CustomDialogueUI inherit from StandardDialogueUI. And ad...