Compare commits

...

2 Commits

Author SHA1 Message Date
MichaelYick 5980ecade7 implemented forward scroll 2021-07-01 01:07:25 -05:00
MichaelYick 80239474ec more hopeless tinkering, shit don't work 2021-06-30 17:53:16 -05:00
2 changed files with 8 additions and 5 deletions

View File

@ -2,13 +2,13 @@
init python:
def UpdateCheck():
renpy.notify("Updater Ran")
pendingVersion = updater.UpdateVersion("https://updates.snootgame.xyz/updates.json")
pendingVersion = updater.UpdateVersion("http://updates.snootgame.xyz/updates.json")
if pendingVersion == None:
persistent.updateresult = "No New Version is Available"
renpy.notify(persistent.updateresult)
else:
renpy.notify(persistent.updateresult + "can be downloaded")
updater.Update("https://updates.snootgame.xyz/updates.json", force=True)
updater.Update("http://updates.snootgame.xyz/updates.json", force=True)
################################################################################
## Initialization
@ -935,6 +935,10 @@ screen preferences():
style_prefix "check"
label _("Naughty Stuff")
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:

View File

@ -23,9 +23,8 @@ init python:
picked = random.randint(0,length - 1)
fileName = files[picked]
renpy.show(fileName, at_list=[randPosition])
#for issue #13 not finalized
#if persistent.scroll == True:
# config.keymap['dismiss'].append('mousedown_5')
if persistent.scroll == True:
config.keymap['dismiss'].append('mousedown_4')
transform randPosition:
alpha 0.0