mirror of
https://git.cavemanon.xyz/Cavemanon/SnootGame.git
synced 2025-02-24 10:38:56 +01:00
Preferences -> Persistent
This commit is contained in:
parent
d06e744e65
commit
428720edff
2 changed files with 4 additions and 1 deletions
|
@ -29,7 +29,7 @@ init python:
|
|||
|
||||
def ToggleAutoUpdate():
|
||||
onclick_audio(persistent.autoup)
|
||||
preferences.autoup = not preferences.autoup
|
||||
persistent.autoup = not persistent.autoup
|
||||
|
||||
def ToggleAutoForwardMove():
|
||||
onclick_audio(persistent.afm_enable)
|
||||
|
|
|
@ -45,6 +45,9 @@ init python:
|
|||
if persistent.lewd == None:
|
||||
persistent.lewd = False
|
||||
|
||||
if persistent.autoup == None:
|
||||
persistent.autoup = False
|
||||
|
||||
transform randPosition:
|
||||
alpha 0.0
|
||||
xalign random.uniform(0.2,0.8)
|
||||
|
|
Loading…
Reference in a new issue