Hey guys, would like to thank you all for the amazing support first.
I've a question, how do I remove those popups of the dialog system? Circulated them with a green circle and blurried around (game is under a NDA), I've been trying to look into the UI if there was a toggle or something that makes me able to toggle them on/off and didn't find it, then i tried looking into the coding and only was able to remove the "NPC" word tho, wasn't very sure if that would affect other functionalities so I've decided to come here ask this, hope is not too trivial to be asked here.
The "Label Input Field" is shown right before a dialog choice conversation.
The Yellow NPC related on top is shown when the character faces a NPC.
And the "Press Escape for Menu" on the middle is show on game start right away.
I sorta wanna know where is located the menu/UI/code i can manage thoses things to not appear.
Thank you very much. Pics attached below.
How to remove popups
How to remove popups
- Attachments
-
- pic_us_2_b.png (86.45 KiB) Viewed 815 times
-
- pic_us_1_b.png (160.2 KiB) Viewed 815 times
Re: How to remove popups
Hi,
The "Press Escape for Menu" message is an alert from the DemoMenu script. You can remove the DemoMenu script or clear its message field.
The "NPC (spacebar to interact)" at the top of the screen is the selector. To turn it off during conversations, see the later part of the Quick Start Tutorial. (Use a Dialogue System Events to disable the Selector or Proximity Selector component.)
The "Label: Input Field" is the Text Field UI. You can remove it from your dialogue UI if you don't need to prompt the player for text input. Or you can deactivate its panel child GameObject.
The "Press Escape for Menu" message is an alert from the DemoMenu script. You can remove the DemoMenu script or clear its message field.
The "NPC (spacebar to interact)" at the top of the screen is the selector. To turn it off during conversations, see the later part of the Quick Start Tutorial. (Use a Dialogue System Events to disable the Selector or Proximity Selector component.)
The "Label: Input Field" is the Text Field UI. You can remove it from your dialogue UI if you don't need to prompt the player for text input. Or you can deactivate its panel child GameObject.
Re: How to remove popups
Everything worked thank you!