- Jan 12, 2019
- 55
- 90
Hi
I'm trying to display mutiple sequential text boxes/dialogue during a slow dissolve transition.
I can use the following code for one text box:
But I want to have the player click through multiple dialogue boxes whilst a slow transition plays in the background. Any pointers/tips would be appreciated. I was think something with ATL perhaps?
Thanks!!
I'm trying to display mutiple sequential text boxes/dialogue during a slow dissolve transition.
I can use the following code for one text box:
Python:
init python:
def dissolve_say(what):
narrator(what, interact=False)
renpy.with_statement(None)
renpy.transition(Dissolve(10))
renpy.show("portrait2a")
narrator(what)
But I want to have the player click through multiple dialogue boxes whilst a slow transition plays in the background. Any pointers/tips would be appreciated. I was think something with ATL perhaps?
Thanks!!