Page 1 of 1

Hide images before calling a scene? [solved]

Posted: Tue Aug 11, 2020 5:42 am
by Exiscoming
Let's say I got a scene with 3 characters displayed and I'd like to fade it to a black screen. I'd do something like this:

Code: Select all

hide image1
hide image2
hide image3
scene black
with fade
Will renpy automatically hide the images when calling a scene or will the images still be shown underneath the scene?

Basically, do I have to hide the images before calling a scene?

Re: Hide images before calling a scene?

Posted: Tue Aug 11, 2020 7:13 am
by akhayashiii
When you call a scene, RenPy hides the images automatically.
https://www.renpy.org/doc/html/displayi ... -statement

Re: Hide images before calling a scene?

Posted: Tue Aug 11, 2020 11:58 am
by Exiscoming
Thought as much. Thanks for letting me know. It's gonna save me a lot of work in the future.