SnootGame/game/src/splashscreen.rpy

26 lines
526 B
Plaintext
Raw Permalink Normal View History

2022-10-21 01:43:01 +00:00
label splashscreen:
$ persistent.splashtype = random.randint(0,2000 - 1)
2022-12-29 20:43:58 +00:00
image caveintrosequence:
"caveintro"
alpha 0
time 0.5
linear 3.5 alpha 1
2023-01-01 01:36:22 +00:00
time 10
2022-12-29 20:43:58 +00:00
linear 1 alpha 0
show caveintrosequence
2023-01-01 01:36:22 +00:00
play sound 'audio/OST/startup.ogg'
pause 11.2
stop sound
2022-10-21 01:43:01 +00:00
if (persistent.languaged_up is None):
2022-11-28 10:19:03 +00:00
$ persistent.languaged_up = True
2022-11-17 07:56:53 +00:00
$ preferences.set_volume('ui', config.default_sfx_volume) # hack
2022-11-28 09:52:18 +00:00
call screen lang_sel
2022-10-21 09:51:52 +00:00
2022-10-21 01:43:01 +00:00
return
2022-10-21 09:51:52 +00:00