Compare commits
4 commits
92e5da0daa
...
335686cd59
| Author | SHA1 | Date | |
|---|---|---|---|
| 335686cd59 | |||
| 7eece4409c | |||
| b1f40bfecb | |||
| 8928ca6087 |
10 changed files with 17 additions and 2 deletions
BIN
audio/bgm/startloop.ogg
Normal file
BIN
audio/bgm/startloop.ogg
Normal file
Binary file not shown.
BIN
gui.rpyc
BIN
gui.rpyc
Binary file not shown.
BIN
images/fx/deadgirl.png
Normal file
BIN
images/fx/deadgirl.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 40 KiB |
11
options.rpy
11
options.rpy
|
|
@ -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 #################################################################
|
||||||
|
|
|
||||||
BIN
options.rpyc
BIN
options.rpyc
Binary file not shown.
|
|
@ -450,6 +450,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
|
||||||
|
|
|
||||||
BIN
screens.rpyc
BIN
screens.rpyc
Binary file not shown.
|
|
@ -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
|
||||||
|
|
|
||||||
BIN
script.rpyc
BIN
script.rpyc
Binary file not shown.
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue