Compare commits

..

4 commits

10 changed files with 17 additions and 2 deletions

BIN
audio/bgm/startloop.ogg Normal file

Binary file not shown.

BIN
gui.rpyc

Binary file not shown.

BIN
images/fx/deadgirl.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

View file

@ -23,13 +23,20 @@ define gui.show_name = False
## The version of the game. ## 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 ## Text that is placed on the game's about screen. Place the text between the
## triple-quotes, and leave a blank line between paragraphs. ## triple-quotes, and leave a blank line between paragraphs.
define gui.about = _p(""" 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 ## the player is at the main menu. This file will continue playing into the
## game, until it is stopped or another file is played. ## 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 ################################################################# ## Transitions #################################################################

Binary file not shown.

View file

@ -451,6 +451,8 @@ screen main_menu():
# textbutton _("About") action ShowMenu("about") # textbutton _("About") action ShowMenu("about")
# textbutton _("Help") action ShowMenu("help") # 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_frame is empty
style main_menu_vbox is vbox style main_menu_vbox is vbox
style main_menu_text is gui_text style main_menu_text is gui_text

Binary file not shown.

View file

@ -102,6 +102,12 @@ label static(duration=1.8):
pause duration pause duration
return return
label splashscreen:
scene black
return
define config.end_splash_transition = Fade(0, 0.5, 1.5)
# scenes begin here # scenes begin here
label start: label start:
jump prologue jump prologue

Binary file not shown.

Binary file not shown.