mirror of
https://git.cavemanon.xyz/Cavemanon/SnootGame.git
synced 2025-01-22 17:26:20 +01:00
Move some config vars to options.rpy
This commit is contained in:
parent
3b53dc1f6f
commit
91abc6f87f
2 changed files with 9 additions and 11 deletions
|
@ -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
|
||||
|
|
|
@ -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:
|
||||
|
||||
|
|
Loading…
Reference in a new issue