Page 1 of 1

Text Box Disappearing

Posted: Wed Sep 19, 2018 9:02 pm
by Westeford
Whenever I change images (backgrounds, characters, screens) the dialogue text box disappears. Now I constantly use "With Dissolve" in my game since it's easier on my eyes.
For example

Code: Select all

scene bg
with Dissolve(.3)

show dude
with Dissolve(.3)
dude "The textbox is showing."

show dude sad
with Dissolve(.3)
dude "It disappeared while I changed expressions and reappeared after the dissolve."
I want to keep the dialogue text box and dialogue on screen while the character's images are changing. Any way to accomplish this?
Thanks

Re: Text Box Disappearing

Posted: Wed Sep 19, 2018 9:28 pm
by Imperf3kt
The textbox is disappearing and reappearing because you're using dissolve. Thats what that function is intended to do.

Try fade or simply nothing instead.
Did you change any config settings in options.rpy?

Re: Text Box Disappearing

Posted: Wed Sep 19, 2018 10:40 pm
by Westeford
Imperf3kt wrote: Wed Sep 19, 2018 9:28 pm The textbox is disappearing and reappearing because you're using dissolve. That's what that function is intended to do.
Try fade or simply nothing instead.
The textbox still disappears and the entire screen fades to black then fades from black with the new image. Like a magic trick.
Nothing would work, but then the character's appearance and changes are too sudden and like I said, it hurts my eyes.
Imperf3kt wrote: Wed Sep 19, 2018 9:28 pm Did you change any config settings in options.rpy?
The only thing I changed was the default cps.

Re: Text Box Disappearing

Posted: Wed Sep 19, 2018 11:28 pm
by Imperf3kt
I'll take a look when at a computer with renpy installed.
It sounds odd and not supposed to do that.