Search found 112 matches

by joeylu
Tue Mar 12, 2024 2:17 am
Forum: Dialogue System for Unity
Topic: localization setting issues
Replies: 7
Views: 1655

localization setting issues

Hi Tony, There is weird issue occurred when I added some localization settings, I will try to explain it step by steps I added a field in Template/Dialogue entry, named it "zh-CN" in its title I went to one of the conversation and picked one of the dialogue entry, click the "Template&...
by joeylu
Fri Mar 08, 2024 4:39 am
Forum: Dialogue System for Unity
Topic: SequencerCommand execution order?
Replies: 7
Views: 2153

Re: SequencerCommand execution order?

Fantastic, thank you Tony
by joeylu
Sun Mar 03, 2024 10:31 pm
Forum: Dialogue System for Unity
Topic: SequencerCommand execution order?
Replies: 7
Views: 2153

Re: SequencerCommand execution order?

is it possible to handle such SetContinueMode(bool) inside the sequencer command script? tks
by joeylu
Sun Mar 03, 2024 9:35 am
Forum: Dialogue System for Unity
Topic: SequencerCommand execution order?
Replies: 7
Views: 2153

Re: SequencerCommand execution order?

Good to know, tks A follow up question, in conversation, I assume the following sequence means SetContinueMode(false); === no continue button SetContinueMode(true)@2; === show continue button after 2 seconds Say if I write a custom sequencerCommand is it possible to disable the continue button for f...
by joeylu
Sat Mar 02, 2024 4:29 am
Forum: Dialogue System for Unity
Topic: SequencerCommand execution order?
Replies: 7
Views: 2153

SequencerCommand execution order?

Hi Tony, a quick question, Does sequences has execution order? When I write custom sequence first(), custom sequence second(), and put it into the sequence field like first();second() will the second sequence be called after first sequence calls its Stop()? I thought it should but in my test, seems ...
by joeylu
Fri Mar 01, 2024 9:55 pm
Forum: Dialogue System for Unity
Topic: question about subtitle
Replies: 9
Views: 1954

Re: question about subtitle

Ah, yes, you are totally right, I missed the \. part from your first reply
Thank you Tony
by joeylu
Fri Mar 01, 2024 12:10 pm
Forum: Dialogue System for Unity
Topic: question about subtitle
Replies: 9
Views: 1954

Re: question about subtitle

What I'm trying to achieve is that when Texts are played in the same subtitle, Each lines can be showing by order with a sequences of delays. Something like showing 3 (wait for 1 second) 2 (wait for 1 second) 1 to attract player's awareness, it would be much better to show above 3 lines in one subti...
by joeylu
Fri Mar 01, 2024 11:10 am
Forum: Dialogue System for Unity
Topic: question about subtitle
Replies: 9
Views: 1954

Re: question about subtitle

Sorry I'm confused, Isn't Delay(x) for Sequence command? Do you mean that I can put the sequence command into between the dialogue text? Or if I didn't explain it clearly, my previous example are in one single entry, with three line breaks, so they can be displayed in one single subtitle panel. And ...
by joeylu
Fri Mar 01, 2024 10:21 am
Forum: Dialogue System for Unity
Topic: question about subtitle
Replies: 9
Views: 1954

Re: question about subtitle

tks Tony, but what if I need a delay in each line in one subtitle box? for instance,

"The little boy picks an axe" (wait 1 second, then show next line)
"He laughs" (wait 1 second, then show next line)
"He left"
by joeylu
Fri Mar 01, 2024 12:28 am
Forum: Dialogue System for Unity
Topic: question about subtitle
Replies: 9
Views: 1954

question about subtitle

Hi Tony, Is it possible to showing multiple lines in one subtitle (perhaps from one dialogue entry) in a sequence? For instance, there's a Dialogoue Entry: "The little boy picks an axe. He laughs, then he left" I'd like to break it to 3 lines, but showing within one subtitle box, something...