Search found 20863 matches

by Tony Li
Sun Jun 02, 2024 10:03 pm
Forum: Dialogue System for Unity
Topic: Turning off conversation UI for internal dialogue UI
Replies: 14
Views: 486

Re: Turning off conversation UI for internal dialogue UI

Hi, Sorry for the extra trouble, but would you please re-send the reproduction project using these steps? 1. Close Unity. 2. Zip up the Assets, Packages, and ProjectSettings folders. 3. Send the zip file to tony (at) pixelcrushers.com. Also provide: The steps that I should follow to reproduce the is...
by Tony Li
Sun Jun 02, 2024 9:38 pm
Forum: Dialogue System for Unity
Topic: Multiple choice
Replies: 1
Views: 16

Re: Multiple choice

Hi,

If I understand you correctly, add multiple player nodes (blue) linked from an NPC node (gray):

multiple2.png
multiple2.png (38.3 KiB) Viewed 6 times
multiple1.png
multiple1.png (42.54 KiB) Viewed 6 times
by Tony Li
Sun Jun 02, 2024 9:30 pm
Forum: Dialogue System for Unity
Topic: Scene Portal - how to use through interaction?
Replies: 1
Views: 9

Re: Scene Portal - how to use through interaction?

Hi,

That should work. What is the Usable supposed to do?
by Tony Li
Sun Jun 02, 2024 9:29 pm
Forum: Dialogue System for Unity
Topic: A quick question about saves
Replies: 3
Views: 69

Re: A quick question about saves

Glad to help!
by Tony Li
Sat Jun 01, 2024 10:42 am
Forum: Dialogue System for Unity
Topic: How do I space out subtitles ?
Replies: 3
Views: 53

Re: How do I space out subtitles ?

Glad to help!
by Tony Li
Sat Jun 01, 2024 8:49 am
Forum: Dialogue System for Unity
Topic: Starting the dialog programatically
Replies: 7
Views: 384

Re: Starting the dialog programatically

Hi,

I'm glad that was helpful! :-)
by Tony Li
Fri May 31, 2024 9:20 pm
Forum: Dialogue System for Unity
Topic: How do I space out subtitles ?
Replies: 3
Views: 53

Re: How do I space out subtitles ?

Hi, Add a script to the Dialogue Manager that has an OnConversationLine(Subtitle) method that adds a space: using UnityEngine; using PixelCrushers.DialogueSystem; public class SeparateSubtitles : MonoBehaviour { void OnConversationLine(Subtitle subtitle) { if (!string.IsNullOrEmpty(subtitle.formatte...
by Tony Li
Fri May 31, 2024 10:36 am
Forum: Dialogue System for Unity
Topic: Modifying UI Typewriter audio?
Replies: 9
Views: 841

Re: Modifying UI Typewriter audio?

Glad to help! If any questions come up, let me know.
by Tony Li
Fri May 31, 2024 7:54 am
Forum: Dialogue System for Unity
Topic: Turning off conversation UI for internal dialogue UI
Replies: 14
Views: 486

Re: Turning off conversation UI for internal dialogue UI

Are there any errors or warnings in the Console window? Can you send a reproduction project to tony (at) pixelcrushers.com? The Dialogue System will only use the "Default Dialogue UI" if it doesn't find a dialogue UI component on whatever GameObject is assigned to the Dialogue Manager's Di...