diff --git a/audio/bgm/startloop.ogg b/audio/bgm/startloop.ogg new file mode 100644 index 0000000..cf8bbf2 Binary files /dev/null and b/audio/bgm/startloop.ogg differ diff --git a/gui.rpyc b/gui.rpyc index f77b589..64fa22d 100644 Binary files a/gui.rpyc and b/gui.rpyc differ diff --git a/images/fx/deadgirl.png b/images/fx/deadgirl.png new file mode 100644 index 0000000..bf28230 Binary files /dev/null and b/images/fx/deadgirl.png differ diff --git a/options.rpy b/options.rpy index 51b3081..c83c9ba 100644 --- a/options.rpy +++ b/options.rpy @@ -23,13 +23,20 @@ define gui.show_name = False ## The version of the game. -define config.version = "beta" +define config.version = "1.0r" ## Text that is placed on the game's about screen. Place the text between the ## triple-quotes, and leave a blank line between paragraphs. define gui.about = _p(""" +story & art by ameworm + +music by Zoey Valentine and ameworm + +editing by yuribird + +special thanks to my guardian angel, giulia homu dot fish and all beta readers """) @@ -62,7 +69,7 @@ define config.has_voice = True ## the player is at the main menu. This file will continue playing into the ## game, until it is stopped or another file is played. -# define config.main_menu_music = "main-menu-theme.ogg" +define config.main_menu_music = "bgm/startloop.ogg" ## Transitions ################################################################# diff --git a/options.rpyc b/options.rpyc index 445e32d..8c617f8 100644 Binary files a/options.rpyc and b/options.rpyc differ diff --git a/screens.rpy b/screens.rpy index 2b5b7a9..2eb1edf 100644 --- a/screens.rpy +++ b/screens.rpy @@ -450,6 +450,8 @@ screen main_menu(): # textbutton _("About") action ShowMenu("about") # textbutton _("Help") action ShowMenu("help") + + on 'show' action Play('music', config.main_menu_music, fadein=1.5) style main_menu_frame is empty style main_menu_vbox is vbox diff --git a/screens.rpyc b/screens.rpyc index 71fd4e2..3435fc3 100644 Binary files a/screens.rpyc and b/screens.rpyc differ diff --git a/script.rpy b/script.rpy index b316fb9..b4abca2 100644 --- a/script.rpy +++ b/script.rpy @@ -102,6 +102,12 @@ label static(duration=1.8): pause duration return +label splashscreen: + scene black + return + +define config.end_splash_transition = Fade(0, 0.5, 1.5) + # scenes begin here label start: jump prologue diff --git a/script.rpyc b/script.rpyc index 3b1ab34..70586bc 100644 Binary files a/script.rpyc and b/script.rpyc differ diff --git a/tl/None/common.rpymc b/tl/None/common.rpymc index 11d88ac..70d7c8d 100644 Binary files a/tl/None/common.rpymc and b/tl/None/common.rpymc differ