Page 1 of 1
How to write a command only conversation line, which just run some sequence?
Posted: Fri Sep 29, 2017 8:47 am
by doneykoo
My dialog manager is configured with Continue button 'Always',
For now, if I write a command only conversation line which just run some sequence, the dialogue game flow stops at the state of that line. It does not go forward to next line.
Re: How to write a command only conversation line, which just run some sequence?
Posted: Fri Sep 29, 2017 9:46 am
by Tony Li
Hi,
If the Dialogue Text and Menu Text are blank, it should skip the subtitle text display and the continue button.
But if you want to make sure it automatically skips the continue button, add the Continue() command to your sequence, such as:
- Sequence: SetActive(Magic Portal); Continue()
Re: How to write a command only conversation line, which just run some sequence?
Posted: Fri Sep 29, 2017 11:26 pm
by doneykoo
Thanks Tony, it works.
And PS., after tests, I found it sometimes need to use the @seconds operator to control the time properly.
e.g,:
Fade(in, 1, #000000);
Continue()@{{end}}
so that it won't directly skip before fade finish.