options.rpy 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. ## This file contains options that can be changed to customize your game.
  2. ##
  3. ## Lines beginning with two '#' marks are comments, and you shouldn't uncomment
  4. ## them. Lines beginning with a single '#' mark are commented-out code, and you
  5. ## may want to uncomment them when appropriate.
  6. ## Basics ######################################################################
  7. ## A human-readable name of the game. This is used to set the default window
  8. ## title, and shows up in the interface and error reports.
  9. ##
  10. ## The _() surrounding the string marks it as eligible for translation.
  11. define config.name = _("Battery Street")
  12. ## Determines if the title given above is shown on the main menu screen. Set
  13. ## this to False to hide the title.
  14. define gui.show_name = True
  15. ## The version of the game.
  16. define config.version = "1.0"
  17. ## Text that is placed on the game's about screen. Place the text between the
  18. ## triple-quotes, and leave a blank line between paragraphs.
  19. define gui.about = _p("""
  20. """)
  21. ## A short name for the game used for executables and directories in the built
  22. ## distribution. This must be ASCII-only, and must not contain spaces, colons,
  23. ## or semicolons.
  24. define build.name = "BatteryStreet"
  25. ## Sounds and music ############################################################
  26. ## These three variables control which mixers are shown to the player by
  27. ## default. Setting one of these to False will hide the appropriate mixer.
  28. define config.has_sound = True
  29. define config.has_music = True
  30. define config.has_voice = True
  31. ## To allow the user to play a test sound on the sound or voice channel,
  32. ## uncomment a line below and use it to set a sample sound to play.
  33. # define config.sample_sound = "sample-sound.ogg"
  34. # define config.sample_voice = "sample-voice.ogg"
  35. ## Uncomment the following line to set an audio file that will be played while
  36. ## the player is at the main menu. This file will continue playing into the
  37. ## game, until it is stopped or another file is played.
  38. # define config.main_menu_music = "main-menu-theme.ogg"
  39. ## Transitions #################################################################
  40. ##
  41. ## These variables set transitions that are used when certain events occur.
  42. ## Each variable should be set to a transition, or None to indicate that no
  43. ## transition should be used.
  44. ## Entering or exiting the game menu.
  45. define config.enter_transition = dissolve
  46. define config.exit_transition = dissolve
  47. ## Between screens of the game menu.
  48. define config.intra_transition = dissolve
  49. ## A transition that is used after a game has been loaded.
  50. define config.after_load_transition = None
  51. ## Used when entering the main menu after the game has ended.
  52. define config.end_game_transition = None
  53. ## A variable to set the transition used when the game starts does not exist.
  54. ## Instead, use a with statement after showing the initial scene.
  55. ## Window management ###########################################################
  56. ##
  57. ## This controls when the dialogue window is displayed. If "show", it is always
  58. ## displayed. If "hide", it is only displayed when dialogue is present. If
  59. ## "auto", the window is hidden before scene statements and shown again once
  60. ## dialogue is displayed.
  61. ##
  62. ## After the game has started, this can be changed with the "window show",
  63. ## "window hide", and "window auto" statements.
  64. define config.window = "auto"
  65. ## Transitions used to show and hide the dialogue window
  66. define config.window_show_transition = Dissolve(.2)
  67. define config.window_hide_transition = Dissolve(.2)
  68. ## Preference defaults #########################################################
  69. ## Controls the default text speed. The default, 0, is infinite, while any other
  70. ## number is the number of characters per second to type out.
  71. default preferences.text_cps = 0
  72. ## The default auto-forward delay. Larger numbers lead to longer waits, with 0
  73. ## to 30 being the valid range.
  74. default preferences.afm_time = 15
  75. ## Save directory ##############################################################
  76. ##
  77. ## Controls the platform-specific place Ren'Py will place the save files for
  78. ## this game. The save files will be placed in:
  79. ##
  80. ## Windows: %APPDATA\RenPy\<config.save_directory>
  81. ##
  82. ## Macintosh: $HOME/Library/RenPy/<config.save_directory>
  83. ##
  84. ## Linux: $HOME/.renpy/<config.save_directory>
  85. ##
  86. ## This generally should not be changed, and if it is, should always be a
  87. ## literal string, not an expression.
  88. define config.save_directory = "BatteryStreet-1636907875"
  89. ## Icon ########################################################################
  90. ##
  91. ## The icon displayed on the taskbar or dock.
  92. define config.window_icon = "gui/window_icon.png"
  93. ## Build configuration #########################################################
  94. ##
  95. ## This section controls how Ren'Py turns your project into distribution files.
  96. init python:
  97. ## The following functions take file patterns. File patterns are case-
  98. ## insensitive, and matched against the path relative to the base directory,
  99. ## with and without a leading /. If multiple patterns match, the first is
  100. ## used.
  101. ##
  102. ## In a pattern:
  103. ##
  104. ## / is the directory separator.
  105. ##
  106. ## * matches all characters, except the directory separator.
  107. ##
  108. ## ** matches all characters, including the directory separator.
  109. ##
  110. ## For example, "*.txt" matches txt files in the base directory, "game/
  111. ## **.ogg" matches ogg files in the game directory or any of its
  112. ## subdirectories, and "**.psd" matches psd files anywhere in the project.
  113. ## Classify files as None to exclude them from the built distributions.
  114. build.classify('**~', None)
  115. build.classify('**.bak', None)
  116. build.classify('**/.**', None)
  117. build.classify('**/#**', None)
  118. build.classify('**/thumbs.db', None)
  119. ## To archive files, classify them as 'archive'.
  120. # build.classify('game/**.png', 'archive')
  121. # build.classify('game/**.jpg', 'archive')
  122. ## Files matching documentation patterns are duplicated in a mac app build,
  123. ## so they appear in both the app and the zip file.
  124. build.documentation('*.html')
  125. build.documentation('*.txt')
  126. ## A Google Play license key is required to download expansion files and perform
  127. ## in-app purchases. It can be found on the "Services & APIs" page of the Google
  128. ## Play developer console.
  129. # define build.google_play_key = "..."
  130. ## The username and project name associated with an itch.io project, separated
  131. ## by a slash.
  132. # define build.itch_project = "renpytom/test-project"