Skip to content

Commit

Permalink
Better button visibility. v0.7 prerelease
Browse files Browse the repository at this point in the history
  • Loading branch information
qirien committed Oct 16, 2021
1 parent 45cf902 commit f154891
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 12 deletions.
Binary file modified game/gui/button/hover_background.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified game/gui/button/idle_background.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions game/options.rpy
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,16 @@ define gui.show_name = True

## The version of the game.

define config.version = "1.0"
define config.version = "0.7"


## Text that is placed on the game's about screen. Place the text between the
## triple-quotes, and leave a blank line between paragraphs.

define gui.about = _p("""
This game is by {url=http://metasepiagames.com}Metasepia Games{/url} and is released under the GPL v3.0 license.
This game is by {a=http://metasepiagames.com}Metasepia Games{/a} and is released under the GPL v3.0 license.
To add more translations, please contact us at [email protected]
To add more translations, please contact us at {a=mailto:[email protected]}[email protected]{/a}
""")


Expand Down
1 change: 1 addition & 0 deletions game/screens.rpy
Original file line number Diff line number Diff line change
Expand Up @@ -289,6 +289,7 @@ style quick_button_text:
## This screen is included in the main and game menus, and provides navigation
## to other menus, and to start the game.

# TODO: replace with images
screen navigation():

vbox:
Expand Down
18 changes: 9 additions & 9 deletions game/script.rpy
Original file line number Diff line number Diff line change
Expand Up @@ -50,19 +50,19 @@ label lit_fire:
label choose_language:
# TODO: make a separate screen and go through a loop of available languages
menu:
"What language would you like?"
"Which language?"
"English":
$ renpy.change_language(None)
"Español":
$ renpy.change_language("espanol")
"Esperanto":
$ renpy.change_language("esperanto")
"Français":
$ renpy.change_language("francais")
"Deutsch":
$ renpy.change_language("deutsch")
"{font=fonts/unifont.ttf}日本語{/font}":
$ renpy.change_language("japanese")
# "Español":
# $ renpy.change_language("espanol")
# "Français":
# $ renpy.change_language("francais")
# "Deutsch":
# $ renpy.change_language("deutsch")
# "{font=fonts/unifont.ttf}日本語{/font}":
# $ renpy.change_language("japanese")


return
Binary file modified game/tl/None/common.rpymc
Binary file not shown.

0 comments on commit f154891

Please sign in to comment.