diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-12-16 15:22:51 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-12-16 15:22:51 -0300 |
commit | 966323e8c4bd1ed024bd93266dfea4e78ea6f54b (patch) | |
tree | 823af0eed719bf07ceecc6382bb33b17fa1cca21 /game | |
parent | 12642033562b78537262a8ccbef0f0e6d9cd1570 (diff) | |
download | client-966323e8c4bd1ed024bd93266dfea4e78ea6f54b.tar.gz client-966323e8c4bd1ed024bd93266dfea4e78ea6f54b.tar.bz2 client-966323e8c4bd1ed024bd93266dfea4e78ea6f54b.tar.xz client-966323e8c4bd1ed024bd93266dfea4e78ea6f54b.zip |
New main menu which looks much more awesome but we definitely need the license
file as soon as possible
Diffstat (limited to 'game')
-rw-r--r-- | game/gfx/bg/forest_sunset.png | bin | 119187 -> 68389 bytes | |||
-rw-r--r-- | game/gfx/bg/forest_sunset_fg.png | bin | 0 -> 9648 bytes | |||
-rw-r--r-- | game/gfx/nourishedflower.webp | bin | 0 -> 95772 bytes | |||
-rw-r--r-- | game/screens.rpy | 54 |
4 files changed, 35 insertions, 19 deletions
diff --git a/game/gfx/bg/forest_sunset.png b/game/gfx/bg/forest_sunset.png Binary files differindex ade2165..6291c57 100644 --- a/game/gfx/bg/forest_sunset.png +++ b/game/gfx/bg/forest_sunset.png diff --git a/game/gfx/bg/forest_sunset_fg.png b/game/gfx/bg/forest_sunset_fg.png Binary files differnew file mode 100644 index 0000000..d5c5d91 --- /dev/null +++ b/game/gfx/bg/forest_sunset_fg.png diff --git a/game/gfx/nourishedflower.webp b/game/gfx/nourishedflower.webp Binary files differnew file mode 100644 index 0000000..3b99660 --- /dev/null +++ b/game/gfx/nourishedflower.webp diff --git a/game/screens.rpy b/game/screens.rpy index 720ea42..6c47cc4 100644 --- a/game/screens.rpy +++ b/game/screens.rpy @@ -398,6 +398,13 @@ screen main_menu(): xfill True yfill True background Frame("gfx/bg/forest_sunset.png", 0, 0) + image "gfx/nourishedflower.webp": + xalign 0.5 + yalign 1.0 + frame: + xfill True + yfill True + background Frame("gfx/bg/forest_sunset_fg.png", 0, 0) ## Start button vbox: @@ -1696,25 +1703,34 @@ screen input_box(ib_message=_("Please write it down here: ")): copypaste True screen welcome(): - window: - background Frame("gui/frame.png", 5, 5) - yalign 0.5 - xalign 0.5 - ypadding 30 - xpadding 30 - xmaximum 0.7 - xminimum 0.7 - yminimum 95 - vbox: - text (_("Welcome to %s!" % (config.name))) color "#fefefe" yalign 0.0 xalign 0.5 size 32 - null height 0.2 - hbox: - textbutton _("{size=28}Login{/size}"): - action Jump("register_password") - - null width 30 - textbutton _("{size=28}Register{/size}"): - action Jump("register_email") + #window: + #background Frame("gui/frame.png", 5, 5) + #yalign 0.5 + #xalign 0.5 + #ypadding 30 + #xpadding 30 + #xmaximum 0.7 + #xminimum 0.7 + #yminimum 95 + #vbox: + #text (_("Welcome to %s!" % (config.name))) color "#fefefe" yalign 0.0 xalign 0.5 size 32 + #null height 0.2 + fixed: + hbox: + xalign 0.5 + yalign 0.2 + textbutton _("{size=36}Login{/size}"): + xpadding 30 + ypadding 30 + background Frame("gui/frame.png", 5, 5) + action Jump("register_password") + + null width 30 + textbutton _("{size=36}Register{/size}"): + xpadding 30 + ypadding 30 + background Frame("gui/frame.png", 5, 5) + action Jump("register_email") |