forked from Cavemanon/SnootGame
Preferences -> Persistent
This commit is contained in:
@ -29,7 +29,7 @@ init python:
|
|||||||
|
|
||||||
def ToggleAutoUpdate():
|
def ToggleAutoUpdate():
|
||||||
onclick_audio(persistent.autoup)
|
onclick_audio(persistent.autoup)
|
||||||
preferences.autoup = not preferences.autoup
|
persistent.autoup = not persistent.autoup
|
||||||
|
|
||||||
def ToggleAutoForwardMove():
|
def ToggleAutoForwardMove():
|
||||||
onclick_audio(persistent.afm_enable)
|
onclick_audio(persistent.afm_enable)
|
||||||
|
@ -45,6 +45,9 @@ init python:
|
|||||||
if persistent.lewd == None:
|
if persistent.lewd == None:
|
||||||
persistent.lewd = False
|
persistent.lewd = False
|
||||||
|
|
||||||
|
if persistent.autoup == None:
|
||||||
|
persistent.autoup = False
|
||||||
|
|
||||||
transform randPosition:
|
transform randPosition:
|
||||||
alpha 0.0
|
alpha 0.0
|
||||||
xalign random.uniform(0.2,0.8)
|
xalign random.uniform(0.2,0.8)
|
||||||
|
Reference in New Issue
Block a user