Search found 2 matches

by Naoki
Thu May 28, 2020 12:30 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] User-togglable screen effects (vignette, film grain) on dedicated layer
Replies: 3
Views: 376

Re: User-togglable screen effects (vignette, film grain) on dedicated layer

Try to add renpy.restart_interaction() at the end of your function. According to this post , renpy.restart_interaction() is actually already called by Function(), so I omitted it. Thanks, though. Forget showing and hiding the image from menu context, easier to just toggle the variable and do the sh...
by Naoki
Wed May 27, 2020 10:44 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] User-togglable screen effects (vignette, film grain) on dedicated layer
Replies: 3
Views: 376

[SOLVED] User-togglable screen effects (vignette, film grain) on dedicated layer

Hello all, Goal: I'm trying to add a vignette effect that can be toggled on and off by the user in the Preferences screen. I created the vignette as a PNG image with transparency. I'm trying to put it on its own layer above the master layer instead of messing around with the master layer's "z-o...