SnootGame/game/src/splashscreen.rpy

14 lines
348 B
Text
Raw Normal View History

2022-10-21 03:43:01 +02:00
label splashscreen:
$ persistent.splashtype = random.randint(0,2000 - 1)
$ renpy.movie_cutscene("images/intros/CaveManonProductions.webm")
if (persistent.languaged_up is None):
2022-11-28 11:19:03 +01:00
$ persistent.languaged_up = True
2022-11-17 08:56:53 +01:00
$ preferences.set_volume('ui', config.default_sfx_volume) # hack
2022-11-28 10:52:18 +01:00
call screen lang_sel
2022-10-21 11:51:52 +02:00
2022-10-21 03:43:01 +02:00
return
2022-10-21 11:51:52 +02:00