Hide white #Next we are hiding our background. $ renpy.pause(2, hard=True) #Since the transformation is 2 seconds long, the pause here is 2 seconds long. $ renpy.pause(6, hard=True) #Our logo takes 2 second to appear, however, we want it to stay on the screen for a while, hence we are using 6 instead of 2 seconds, so it stays for 4 seconds. Show logo at transform_logo #Next, we are showing our logo with our logo transformation.
Since the transformation is "happening" at the same time, the pause needs to be at least as long as the transformation.
$ renpy.pause(2, hard=True) #For this its important to know the transformation time. Show white at transform_white #next we swho our white screen with our made transformation This command pauses renpy, hence makes it unable to click $ renpy.pause(1, hard=True) #Pauses the black screen for a second.