Dialog Text Tags interrupt the playback of the dissolve effect.
Posted: Thu Oct 21, 2021 11:39 am
Hello. I want the textbox to open smoothly, so I added in screen say:
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
on "show" action With(renpy.transition(dissolve))
on "hide" action With(renpy.transition(dissolve))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