What I wanted to do was disable all clicking and other skipping functionality that would skip a series of images fading in/out. I've tried basically everything suggested such as
Code: Select all
key "theKey" action...Code: Select all
config.keymap['dismiss'].remove/append('theKey')Code: Select all
config.say_allow_dismissI just want to disable the skipping of the transition, so it is forced to be viewed, then set a persistent value that is checked each time it shows up so the user can skip it.
I imagine it would look something like this with the disable/enable clicks functions defined elsewhere:
Code: Select all
label start:
scene Black
$ disable_clicks() #only disables if persistent says they haven't watched
show snow with dissolve
pause(3)
show title with dissolve
pause(4)
hide title with dissolve
pause(3)
scene background_1 with dissolve
$ enable_clicks() #returns if clicks are already enabled otherwise it reenables them and sets persistent value
"Now you can click all you want because you watched everything"
I'd love it if someone could help, I'm horrible with python and relatively new using renpy (I dropped it for a while so I'm just coming back now), if you can give me a working example, or link to one, I'd really appreciate it!