Toggleable forward-scroll for game #13
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
As of now, scrolling forward and back only goes over text the player has seen. Anon has requested we implement a feature in where merely scrolling pushes text forward. This conflicts with traditional renpy functionality (as scrolling up and down go back and forth respectively in text you've already seen) thus it should be an enabled feature rather than a feature hard-coded in.
Tips:
"enable lewd images" is a custom menu option I programmed in and can work as a template on how to make menu options.
I think the renpy wiki has some stuff on rebinding controls, but I wouldn't bet on it.
Shockingly they do! keymap
Adding
inside the init python adds that functionality, now I just need to tweak it to set it to a variable
EDIT: Using the template you laid out worked perfectly to add a menu option to enable it, although as written it needs a game restart to take effect (assumedly because it's inside the init) will tweak later.
neat.
863aa68070
fixes this issue