forked from Cavemanon/SnootGame
implemented forward scroll
This commit is contained in:
@ -935,6 +935,10 @@ screen preferences():
|
|||||||
style_prefix "check"
|
style_prefix "check"
|
||||||
label _("Naughty Stuff")
|
label _("Naughty Stuff")
|
||||||
textbutton _("Enable Lewd Images") action ToggleVariable("persistent.lewd", True, False)
|
textbutton _("Enable Lewd Images") action ToggleVariable("persistent.lewd", True, False)
|
||||||
|
vbox:
|
||||||
|
style_prefix "check"
|
||||||
|
label _("Requires Restart")
|
||||||
|
textbutton _("Enable Forward-Scroll Movement") action ToggleVariable("persistent.scroll", True, False)
|
||||||
|
|
||||||
|
|
||||||
vbox:
|
vbox:
|
||||||
|
@ -23,9 +23,8 @@ init python:
|
|||||||
picked = random.randint(0,length - 1)
|
picked = random.randint(0,length - 1)
|
||||||
fileName = files[picked]
|
fileName = files[picked]
|
||||||
renpy.show(fileName, at_list=[randPosition])
|
renpy.show(fileName, at_list=[randPosition])
|
||||||
#for issue #13 not finalized
|
if persistent.scroll == True:
|
||||||
#if persistent.scroll == True:
|
config.keymap['dismiss'].append('mousedown_4')
|
||||||
# config.keymap['dismiss'].append('mousedown_5')
|
|
||||||
|
|
||||||
transform randPosition:
|
transform randPosition:
|
||||||
alpha 0.0
|
alpha 0.0
|
||||||
|
Reference in New Issue
Block a user