summaryrefslogtreecommitdiff
path: root/game/screens.rpy
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2020-12-16 15:41:06 -0300
committerJesusaves <cpntb1@ymail.com>2020-12-16 15:41:06 -0300
commitf18fff1414414bdd245aec76a172e55f4dbfe162 (patch)
treed373dc275a99203376cd9c9da84f7dac30944c24 /game/screens.rpy
parentec24251f5243eb7d9dc95e89d16d457a49b155fa (diff)
downloadclient-f18fff1414414bdd245aec76a172e55f4dbfe162.tar.gz
client-f18fff1414414bdd245aec76a172e55f4dbfe162.tar.bz2
client-f18fff1414414bdd245aec76a172e55f4dbfe162.tar.xz
client-f18fff1414414bdd245aec76a172e55f4dbfe162.zip
Redo main screen when logged out
Diffstat (limited to 'game/screens.rpy')
-rw-r--r--game/screens.rpy48
1 files changed, 34 insertions, 14 deletions
diff --git a/game/screens.rpy b/game/screens.rpy
index 3bd84ce..77b953e 100644
--- a/game/screens.rpy
+++ b/game/screens.rpy
@@ -1720,21 +1720,41 @@ screen welcome():
#text (_("Welcome to %s!" % (config.name))) color "#fefefe" yalign 0.0 xalign 0.5 size 32
#null height 0.2
fixed:
- hbox:
+ image "gfx/nourishedflower.webp":
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")
+ yalign 1.0
+
+ label (_("Welcome to %s!" % (config.name))):
+ style "pref_label"
+ yalign 0.02
+ xalign 0.50
+ text_size 54
+ text_outlines [ (1, "#000", 0, 0) ]
+ #color "#fefefe"
+ #size 32
+
+ textbutton _("{size=36}Login{/size}"):
+ xalign 0.33
+ yalign 0.15
+ xpadding 30
+ ypadding 30
+ background Frame("gui/frame.png", 5, 5)
+ action Jump("register_password")
+ textbutton _("{size=36}Register{/size}"):
+ xalign 0.67
+ yalign 0.15
+ xpadding 30
+ ypadding 30
+ background Frame("gui/frame.png", 5, 5)
+ action Jump("register_email")
+
+ textbutton _("{size=36}Preferences{/size}"):
+ xalign 0.5
+ yalign 0.25
+ xpadding 30
+ ypadding 30
+ background Frame("gui/frame.png", 5, 5)
+ action ShowMenu('preferences')