Move some config vars to options.rpy

This commit is contained in:
Map 2024-10-03 10:15:14 -05:00
parent 3b53dc1f6f
commit 91abc6f87f
2 changed files with 9 additions and 11 deletions

View file

@ -137,6 +137,15 @@ define config.developer = "auto"
default persistent.enable_debug_scores = config.developer
default persistent.enable_chapter_select = config.developer
default persistent.lewd = False
default persistent.autoup = False
init python:
# No idea what this does
if persistent.scroll == True:
config.keymap['dismiss'].append('mousedown_4')
elif persistent.scroll == None:
persistent.scroll = False
##Default Audio is not ear rape
define config.default_music_volume = 0.48

View file

@ -34,12 +34,6 @@ init python:
renpy.music.register_channel("ambient2","sfx",True,tight=True)
renpy.music.register_channel("ambient3","sfx",True,tight=True)
# No idea what this does
if persistent.scroll == True:
config.keymap['dismiss'].append('mousedown_4')
elif persistent.scroll == None:
persistent.scroll = False
# Set vars for bonus chapter completion
if persistent.bonus_chapters == None:
if renpy.seen_image("big ending"): #for returning players
@ -56,11 +50,6 @@ init python:
choices.reverse()
return choices
pass
default persistent.lewd = False
default persistent.autoup = False
label start: