Search found 10 matches
- Thu Jan 03, 2019 5:43 am
- Forum: Dialogue System for Unity
- Topic: Import all actors from custom database
- Replies: 5
- Views: 780
Re: Import all actors from custom database
Wow.. thank you
- Thu Jan 03, 2019 5:38 am
- Forum: Dialogue System for Unity
- Topic: Add Custom Field Type in Dialogue Entry
- Replies: 1
- Views: 448
Add Custom Field Type in Dialogue Entry
Hi, I want add new type of Fields in Dialogue Entry. Something like enum and sprite or audio selection. How to do that?
- Wed Jan 02, 2019 10:39 am
- Forum: Dialogue System for Unity
- Topic: Import all actors from custom database
- Replies: 5
- Views: 780
Re: Import all actors from custom database
I have actors database using google sheet then export it as json file and import it at design time.
- Wed Jan 02, 2019 4:49 am
- Forum: Dialogue System for Unity
- Topic: Import all actors from custom database
- Replies: 5
- Views: 780
Import all actors from custom database
Hi,
How to import actors from custom database?
How to import actors from custom database?
- Fri Dec 21, 2018 4:37 am
- Forum: Dialogue System for Unity
- Topic: Ongoing conversation lines during response - Telltale style
- Replies: 11
- Views: 1759
Re: Ongoing conversation lines during response - Telltale style
This is also what I needed. NPC subtitle with Player Responses. Thank you :) public void ShowSubtitle(Subtitle subtitle) { if (DialogueManager.currentConversationState.pcResponses.Length >= 2) { ShowResponses(subtitle, DialogueManager.currentConversationState.pcResponses, DialogueManager.displaySett...
- Fri Dec 21, 2018 4:34 am
- Forum: Dialogue System for Unity
- Topic: How to make two subtitle panel that can show choices?
- Replies: 7
- Views: 1108
Re: How to make two subtitle panel that can show choices?
Hmm yeah that can be done like that and yes there's another way to do like that. Thank you for your explanation, now I can figure it out how to migrate my dialogue system to DS :) Btw, How to call DialogueManager to continue the dialogue entry? If you've set the Dialogue Manager's Subtitle Settings ...
- Thu Dec 20, 2018 10:43 am
- Forum: Dialogue System for Unity
- Topic: How to make two subtitle panel that can show choices?
- Replies: 7
- Views: 1108
Re: How to make two subtitle panel that can show choices?
Hi, 2. How to set the Dialogue Entry is the choice if there's no actor is a player. The choice doesn't have to correspond to a player GameObject. But in the dialogue database the actor's Is Player checkbox must be ticked. This checkbox tells the Dialogue System to show the dialogue entry node as a ...
- Thu Dec 20, 2018 10:37 am
- Forum: Dialogue System for Unity
- Topic: How to make two subtitle panel that can show choices?
- Replies: 7
- Views: 1108
Re: How to make two subtitle panel that can show choices?
This is my two subtitle panel. The actor is more than two person and appear according to the dialogue sequence
- Thu Dec 20, 2018 10:37 am
- Forum: Dialogue System for Unity
- Topic: How to make two subtitle panel that can show choices?
- Replies: 7
- Views: 1108
Re: How to make two subtitle panel that can show choices?
Actually I made my own UI system for this dialogue. I just confused how to integrate it with DS. Maybe I will use IDialogueUI to make new UIDIalogueManager for my UI system. I use VIDE Dialogue before just for dialogue script editor and it has limitation when I want to edit or add more thing to the ...
- Thu Dec 20, 2018 6:07 am
- Forum: Dialogue System for Unity
- Topic: How to make two subtitle panel that can show choices?
- Replies: 7
- Views: 1108
How to make two subtitle panel that can show choices?
Hi, I make story game that didn't have player as actor. All choices is NPC. I have questions 1. I need to make two subtitle panel that also have response panel. How to do that? 2. How to set the Dialogue Entry is the choice if there's no actor is a player. 3. How to switch different response menu pa...