Search found 15 matches

by UKMasters
Sat May 15, 2021 6:55 am
Forum: Dialogue System for Unity
Topic: Integration with Text Animator
Replies: 6
Views: 745

Re: Integration with Text Animator

Hi Tony, I've implemented the changes that you suggested using the script you provided. The "restart from the beginning" issue has been solved - but the text accumulation is not working. I have "accumulate text" checked. How to replicate... Dialogue A: "You see Fred." P...
by UKMasters
Thu May 13, 2021 8:21 pm
Forum: Dialogue System for Unity
Topic: Integration with Text Animator
Replies: 6
Views: 745

Re: Integration with Text Animator

Thanks Tony

Great support as always.

Pete
by UKMasters
Wed May 12, 2021 1:29 pm
Forum: Dialogue System for Unity
Topic: Integration with Text Animator
Replies: 6
Views: 745

Integration with Text Animator

Hi Tony, I am using Dialogue System and Text Animator. I am using the Accumulate Text option. I'm having a couple of problems: 1. The Text Animator is replaying the entire conversation each time a Player makes a choice. It doesn't seem to recognise that it should only play the new text. 2. The scree...
by UKMasters
Mon Mar 29, 2021 7:18 pm
Forum: Dialogue System for Unity
Topic: Dialogue system database diagram
Replies: 5
Views: 318

Re: Dialogue system database diagram

Thanks Tony,

The link you sent is helpful. I'll have a look at things with that and come back to you if I have any more questions.

Pete
by UKMasters
Sun Mar 28, 2021 8:48 pm
Forum: Dialogue System for Unity
Topic: Dialogue system database diagram
Replies: 5
Views: 318

Re: Dialogue system database diagram

Hi Tony, I'm used to relational databases, and still new to unity and dialogue system, so that might be leading my thinking the wrong way. I was thinking 2 things when I wrote my question. 1. What fields are defined against each entity (I find that knowing that helps me understand how things fit tog...
by UKMasters
Sat Mar 27, 2021 11:13 pm
Forum: Dialogue System for Unity
Topic: Dialogue system database diagram
Replies: 5
Views: 318

Dialogue system database diagram

Hi Tony,

Is there any place I can see a diagram (like an entity relationship diagram) of the dialogue system database?

Or is there a way to get a list of all the tables and fields?

Thanks
Pete
by UKMasters
Wed Oct 14, 2020 9:22 pm
Forum: Dialogue System for Unity
Topic: Substituting text / phrases / nodes at runtime
Replies: 1
Views: 207

Substituting text / phrases / nodes at runtime

Hi Tony, This isn't fully thought through yet, as I wanted to check what's possible before going too far down a certain route. So please bear with me. As part of the game I'm developing, I want to be able to provide variations in the narrative, so that the player can run the same story but different...
by UKMasters
Sat Sep 05, 2020 2:20 pm
Forum: Dialogue System for Unity
Topic: Querying the Dialogue Database
Replies: 4
Views: 710

Re: Querying the Dialogue Database

Hi Tony, Thanks for the reply above and for all your help. I see how I can add a custom field to a specific conversation, but what I need to do is to "extend" the datamodel for EVERY conversation to include additional fields. For example, I want to store the following bits of additional in...
by UKMasters
Tue Aug 18, 2020 9:37 pm
Forum: Dialogue System for Unity
Topic: Querying the Dialogue Database
Replies: 4
Views: 710

Re: Querying the Dialogue Database

I think for question 1, I can do something like... for (int i = 1; i < 50; i++) { var conversationTitle = DialogueManager.masterDatabase.GetConversation(i); string title = conversationTitle.Title; Debug.Log("Story name is " + title); } But please let me know if I'm missing something, or if...
by UKMasters
Tue Aug 18, 2020 7:20 pm
Forum: Dialogue System for Unity
Topic: Querying the Dialogue Database
Replies: 4
Views: 710

Querying the Dialogue Database

Hi Tony, Some more newbie questions, this time about the Dialogue Database. How would I query the Dialogue Database using a c# script? For example, I want to be able to loop through all the Conversations in the database and get their ID, Title and other key information about each Conversation. I the...