Search found 7 matches

by zarnes
Fri Apr 20, 2018 4:10 am
Forum: Dialogue System for Unity
Topic: Call custom actions without breaking default sequence
Replies: 3
Views: 685

Re: Call custom actions without breaking default sequence

Ok, thanks a lot :D
I just found out how to add my function on the On Conversation Line with the Dialogue System Event Script.
So I now have 2 solutions.

As always thanks for your support !
by zarnes
Thu Apr 19, 2018 9:52 am
Forum: Dialogue System for Unity
Topic: Call custom actions without breaking default sequence
Replies: 3
Views: 685

Call custom actions without breaking default sequence

Hi, I'm currently working on a visual novel style game. Sometimes I need to do custom actions, like change background, or do some others customs actions. First I though that sequence could be perfect, with custom sequencer commands I could do whatever I like ! But as soon a I type a single letter in...
by zarnes
Thu Jan 04, 2018 4:46 am
Forum: Dialogue System for Unity
Topic: Can't create variable and databases
Replies: 9
Views: 1425

Re: Can't create variable and databases

Good morning,

Adding a conversation id worked perfectly. I didn't noticed this property, now it's working without error.
Thank you very much for your help :)

Have a good day and happy new year !
Romain
by zarnes
Wed Jan 03, 2018 11:22 am
Forum: Dialogue System for Unity
Topic: Can't create variable and databases
Replies: 9
Views: 1425

Re: Can't create variable and databases

Ok I have the logs, I see the line but it appear twice (last line of logs) : http://nsa39.casimages.com/img/2018/01/03/180103051008248546.png (bigger version : http://www.casimages.com/i/180103051008248546.png.html) First I though I was adding the conversation twice in my code. By commenting my Addc...
by zarnes
Wed Jan 03, 2018 10:10 am
Forum: Dialogue System for Unity
Topic: Can't create variable and databases
Replies: 9
Views: 1425

Re: Can't create variable and databases

My conversation have an id and it's my single conversation, does ids are shared with dialogue entries or something maybe ? I also added database. Nothing has changed, I can still play the dialogue without apparent problem but I still have the error. For now it's not really a problem but who knows, a...
by zarnes
Wed Jan 03, 2018 4:43 am
Forum: Dialogue System for Unity
Topic: Can't create variable and databases
Replies: 9
Views: 1425

Re: Can't create variable and databases

Hi and thanks for the response, I created some variable but I can't change the variable Type, it always stay Text type, I tried that : Variable var = new Variable(); var.fields = new List<Field>(); var.fields.Add(new Field("Type", FieldType.Number.ToString(), FieldType.Number)); // I tried...
by zarnes
Tue Jan 02, 2018 4:01 am
Forum: Dialogue System for Unity
Topic: Can't create variable and databases
Replies: 9
Views: 1425

Can't create variable and databases

Hello, My team and I are creating a web-based dialogue editor which generate XML. The files are then imported into Unity and I'm converting them into a dialogue database, currently I'm using a blank databse and modify it but the objective is to create a new one for each new XML file. I managed to cr...