-
Notifications
You must be signed in to change notification settings - Fork 156
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix accidentally using wrong versions of files for tests.
- Loading branch information
1 parent
5e16830
commit fdb404e
Showing
28 changed files
with
5,820 additions
and
700 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,221 @@ | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
define config.name = _("The Question") | ||
|
||
|
||
|
||
|
||
|
||
define gui.show_name = True | ||
|
||
|
||
|
||
|
||
define config.version = "7.0" | ||
|
||
|
||
|
||
|
||
|
||
define gui.about = _("""Character Art: Deji. | ||
Original Character Art: derik. | ||
Background Art: Mugenjohncel. | ||
Original Background Art: DaFool | ||
Music By: Alessio | ||
Written By: mikey""") | ||
|
||
|
||
|
||
|
||
|
||
|
||
define build.name = "the_question" | ||
|
||
|
||
define build.version = "7.0" | ||
|
||
|
||
|
||
|
||
|
||
|
||
define config.has_sound = True | ||
define config.has_music = True | ||
define config.has_voice = False | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
define config.enter_transition = dissolve | ||
define config.exit_transition = dissolve | ||
|
||
|
||
|
||
|
||
define config.after_load_transition = None | ||
|
||
|
||
|
||
|
||
define config.end_game_transition = None | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
define config.window = "auto" | ||
|
||
|
||
|
||
|
||
define config.window_show_transition = Dissolve(.2) | ||
define config.window_hide_transition = Dissolve(.2) | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
default preferences.text_cps = 0 | ||
|
||
|
||
|
||
|
||
|
||
default preferences.afm_time = 15 | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
define config.save_directory = "the_question-7" | ||
|
||
|
||
|
||
|
||
|
||
|
||
define config.window_icon = "gui/window_icon.png" | ||
|
||
|
||
|
||
|
||
|
||
|
||
init python: | ||
|
||
|
||
config.searchpath.append(config.renpy_base + "/sdk-fonts") | ||
build.classify_renpy("sdk-fonts/**", "all") | ||
build._sdk_fonts = True | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
build.classify('**~', None) | ||
build.classify('**.bak', None) | ||
build.classify('**/.**', None) | ||
build.classify('**/#**', None) | ||
build.classify('**/thumbs.db', None) | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
build.documentation('*.html') | ||
build.documentation('*.txt') | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
define build.itch_project = "renpytom/the-question" | ||
|
||
|
||
|
||
define config.console = True | ||
# Decompiled by unrpyc: https://github.com/CensoredUsername/unrpyc |
Oops, something went wrong.