game done

Word count: 13,830 words
This commit is contained in:
Jacoder23 2024-04-15 04:23:01 +08:00
parent 0e86428eee
commit aeccaf976b
8 changed files with 1824 additions and 584 deletions

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

View File

@ -4,9 +4,6 @@
## them. Lines beginning with a single '#' mark are commented-out code, and you ## them. Lines beginning with a single '#' mark are commented-out code, and you
## may want to uncomment them when appropriate. ## may want to uncomment them when appropriate.
## TODO: Change these top three values (config.name, build.name,
## and config.save_directory) to something unique for your project!
## Basics ###################################################################### ## Basics ######################################################################
## A human-readable name of the game. This is used to set the default window ## A human-readable name of the game. This is used to set the default window
@ -43,11 +40,12 @@ define config.save_directory = "Jam13Yuuka-1258128491"
## The version of the game. ## The version of the game.
define config.version = "1.0" define config.version = "1.0"
define build.directory_name = "DimlyDreamtLotusFlowers"
## 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("""A game created in 3 days for Touhou Fan Game Jam 13. define gui.about = _p("""A game created for Touhou Fan Game Jam 13.
By Jacoder23, Shyraku, Nanossis, hermit_irl, and Spear. By Jacoder23, Shyraku, Nanossis, hermit_irl, and Spear.
@ -55,8 +53,6 @@ Uses EasyRenPyGui and Achievements for Ren'Py both by Feniks Development
Uses Renpy Auto Highlight and Kinetic Text Tags both by Wattson Uses Renpy Auto Highlight and Kinetic Text Tags both by Wattson
Uses Lint+ by KigyoDev""") Uses Lint+ by KigyoDev""")
# TODO: REPLACE THE ABOUT WITH NEW CREDITS WHEN POSSIBLE
## Sounds and music ############################################################ ## Sounds and music ############################################################
## These three variables control, among other things, which mixers are shown ## These three variables control, among other things, which mixers are shown

View File

@ -8,7 +8,7 @@
## Replace this with your background image, if you like ## Replace this with your background image, if you like
image main_menu_background = "Main_Menu3.png" image main_menu_background = "Main_Menu3.png"
image main_menu_foreground = HBox( image main_menu_foreground = HBox(
Solid("#292835AA", xsize=325, ysize=575) Solid("#292835AA", xsize=325, ysize=480)
) )
screen main_menu(): screen main_menu():

File diff suppressed because it is too large Load Diff

9
progressive_download.txt Normal file
View File

@ -0,0 +1,9 @@
# RenPyWeb progressive download rules - first match applies
# '+' = progressive download, '-' = keep in game.zip (default)
# See https://www.renpy.org/doc/html/build.html#classifying-and-ignoring-files for matching
#
# +/- type path
- image game/gui/**
- image game/**
- music game/audio/**
- voice game/voice/**

View File

@ -1 +1 @@
{ "type" : "template" } {"type": "template", "build_update": false, "packages": ["mac", "win", "linux"], "add_from": true, "force_recompile": true, "android_build": "Release", "tutorial": false, "renamed_all": true, "renamed_steam": true}

BIN
web-presplash.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB