- May 2, 2018
- 146
- 1,107
How would I go about having dialogue remain during scene transitions? ie. I want a sentence to remain while 4 scenes transition with dissolve.
label testsametext:
scene image 1
"Your text"
scene image 2
"{cps=0}Your text" #It will be displayed immediately and will appear to be the same
scene image 3
"{cps=0}Your text"
scene image 4
"{cps=0}Your text"
image my_auto_image:
image1
pause 0.5
image2
pause 0.5
image3
...
scene my_auto_image
"Your text"
show
rather than scene
, at least for the 3 images.show
and scene
, you can have each "bg" image replace the previous one, without affecting anything else on the screen. Note: It's the space between the image names that make RenPy say "this is a bg", "this is alison", etc.image bg home hallway night = "bg_home_hallway_night"
image bg home hallway day = "bg_home_hallway_day"
image bg home kitchen night = "bg_home_kitchen_night"
image bg home kitchen day = "bg_home_kitchen_day"
label start:
scene bg home hallway night
with dissolve
"this is the first line of text"
show bg home hallway day
with dissolve
"this is the second line of text"
show bg home kitchen night
with dissolve
"this is the third line of text"
show bg home kitchen day
with dissolve
"this is the fourth line of text"
scene black with dissolve
"*** THE END ***"
image my_auto_image:
"bg_home_hallway_night" with dissolve
pause 2.0
"bg_home_hallway_day" with dissolve
pause 2.0
"bg_home_kitchen_night" with dissolve
pause 2.0
"bg_home_kitchen_day" with dissolve
label start:
scene my_auto_image
"this is the first line of text"
"this is the second line of text"
"this is the third line of text"
"this is the fourth line of text"
scene black with dissolve
"*** THE END ***"
"Some text that should stay on screen"
show some image # don't use with dissolve here, but instead:
$ renpy.transition(dissolve, layer="master")
show another image
$ renpy.transition(dissolve, layer="master")
extend "some text that should stay on screen with some more text"
show yet another image
$ renpy.transition(dissolve, layer="master")
"new text"
show new image with dissolve
Well, back in the early time where Ren'py started to deal with movies, there were ais it possible to speed up a movie file in Renpy itself, or do I have to use a video program?
fps
optional argument for the
There are a couple of ways to do this. The simplest is to use a "menu" right at the beginning of your game.I'm new to renpy engine I want small help in script making I want make a Age verification code in Ren'Py script please help me to make a code in Ren'Py script Like { Yes I'm 18+ } goes to game and {No below 18 } is quit from game to home screen
start:
scene put-the-name-of-whatever-image-you-want-to-be-showing-behind-the-menu-here
"You must be at least 18 to play this game"
menu:
"Yes, I'm 18 or older":
pass
"No, I'm under 18":
return
now-start-with-the-rest-of-your-game-code-here