Page 1 of 1

Dialog Text Tags interrupt the playback of the dissolve effect.

Posted: Thu Oct 21, 2021 11:39 am
by Art4D
Hello. I want the textbox to open smoothly, so I added in screen say:

Code: Select all

on "show" action With(renpy.transition(dissolve))
on "hide" action With(renpy.transition(dissolve))
And it works as long as there are no tags in the text. If I add the {w=1} tag, there is no dissolve effect for the textbox. At the same time, with the {w} tag, the effect is present.

Is it possible to make the textbox display with the dissolve effect if there are tags in the text?

Code: Select all

a "{gps=10}test test test" //WORK
a "{cps=10}{w}test test test" //WORK
a "{cps=10}{w=1}test test test3" //NOT WORK

Re: Dialog Text Tags interrupt the playback of the dissolve effect.

Posted: Fri Oct 22, 2021 9:22 am
by Art4D
I found a dubious solution, replacing "{w=0.33)" with "{cps=3}\ " gives a similar effect, but I would like the w= tag to work someday with the modified screen say.