Page 1 of 1

Typewriter speed

Posted: Fri Dec 18, 2015 4:22 pm
by miguelfanclub
There is a really cool option in most JRPG games dialogues, they change the speed of the text displayed. Remember that feature in RPG Maker,
that was done via rich text parameters on the text field option for the dialogue.
They do it like that:

\. - Waits 15 frames (quarter second).
\| - Waits 60 frames (a full second).
\! - Waits until key is pressed.
\> - Following text is instant.
\< - Following text is no longer instant.
\^ - Skips to the next message.

Is there an option for that? If not, could be a cool feature to add.

Re: Typewriter speed

Posted: Fri Dec 18, 2015 5:25 pm
by Tony Li
That's a good idea. I'll add it to the roadmap.

This isn't the same, but you can also set up a Continue button to fast forward the typewriter on the first click. The instructions are here.

Re: Typewriter speed

Posted: Tue Jan 26, 2016 4:16 pm
by Tony Li
Hi Miguel,

I'm just posting to let you know that this should make it into the next release.

The codes will be slightly different from RPG Maker:

\, - Waits 15 frames (quarter second).
\. - Waits 60 frames (a full second).
\> - Following text is instant.
\< - Following text is no longer instant.
\^ - Skips to the next message.

Since the Dialogue System uses the Continue Button design, the \! code won't be supported. Also, I had to change the "wait 15/60 frames" codes because the "|" character is reserved for other purposes (splitting dialogue entries in converters).