Page 1 of 1

How to keep an image on the screen for some time?

Posted: Sat Sep 06, 2008 7:48 pm
by Alphonse
Hello! I'm very new to Ren'Py, so I have a question to ask. I hope it's not a stupid question. Is there any way to keep an image in the screen for a certain period of time before it changes or disappears on its own? Thanks!

Re: How to keep an image on the screen for some time?

Posted: Sat Sep 06, 2008 7:51 pm
by Dusty
Maybe something like

Code: Select all

show my_image first_pose at some_position #shows the image
$ renpy.pause(1) #pauses the game
show my_image second_pose at some_position #changes the image
if you want to pause the game for a bit before changing the image.

Re: How to keep an image on the screen for some time?

Posted: Sat Sep 06, 2008 8:32 pm
by Nio
I use this for splash screens:

Code: Select all

     scene logo
     with dissolve
     with Pause(3.0)
The logo image (fullscreen) shows up with a dissolve and stays there for 3 seconds.