Do you know how to change the scene to a pure white background? "scene black" works but if type "scene white", the background is grayish, which probably means "white" isn't a valid scene.
Hey there whiskeycharley, thanks for phoning in. I know this is an old message, but I figure you and plenty of others could use an explanation.
“White” isn’t a defined action/color on its own like black is. The way around this is to simply define an image you’ve saved(that is all white) as your white scene.
I’m sure you can figure out how to make an all white image in an image/art program, but here’s a refresher on how to get it into the program.
These days Ren’Py makes a new project with a default image folder, but if you’re working with an older version/project, this is how you’d do it:
Drop and drag the white image inside the game folder for the game you’re working on(make sure it’s in the GAME folder and not the BASE folder). Inside the script for the game, define a new background image with the pure white background. It should look like this:
image bg pure white = “yourimage.png”
Or jpeg, or any other format Ren’Py accepts. Then when you want the background to be pure white, just say “scene bg pure white”.
Make sure you define the image BEFORE the state label.