mirror of
https://git.cavemanon.xyz/Cavemanon/SnootGame.git
synced 2025-03-10 10:31:23 +01:00
25 lines
526 B
Text
25 lines
526 B
Text
|
|
label splashscreen:
|
|
$ persistent.splashtype = random.randint(0,2000 - 1)
|
|
|
|
image caveintrosequence:
|
|
"caveintro"
|
|
alpha 0
|
|
time 0.5
|
|
linear 3.5 alpha 1
|
|
time 10
|
|
linear 1 alpha 0
|
|
|
|
show caveintrosequence
|
|
play sound 'audio/OST/startup.ogg'
|
|
pause 11.2
|
|
stop sound
|
|
|
|
if (persistent.languaged_up is None):
|
|
$ persistent.languaged_up = True
|
|
$ preferences.set_volume('ui', config.default_sfx_volume) # hack
|
|
call screen lang_sel
|
|
|
|
|
|
return
|
|
|