diff options
author | Jesusaves <cpntb1@ymail.com> | 2022-11-02 19:28:56 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2022-11-02 19:28:56 -0300 |
commit | e8cd1f66650608cdc888dd39dd7906e481d50461 (patch) | |
tree | 7c177f4fffc8dfefcf68581a6a359413cae10e10 | |
parent | 35369158b37662cd427a93c3319405f83ec94d94 (diff) | |
download | renpy-e8cd1f66650608cdc888dd39dd7906e481d50461.tar.gz renpy-e8cd1f66650608cdc888dd39dd7906e481d50461.tar.bz2 renpy-e8cd1f66650608cdc888dd39dd7906e481d50461.tar.xz renpy-e8cd1f66650608cdc888dd39dd7906e481d50461.zip |
Add some emphasis when you hover a world
-rw-r--r-- | game/mirrorlake.rpy | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/game/mirrorlake.rpy b/game/mirrorlake.rpy index f6d62c6..de0f27f 100644 --- a/game/mirrorlake.rpy +++ b/game/mirrorlake.rpy @@ -32,6 +32,7 @@ screen mirrorlake(): add Frame("gui/button/choice_hover_background.png", 0, 0) text _("{b}The Void{/b}"): color "#F2F" + hover_outlines [(absolute(1), "#000", absolute(0), absolute(0))] xalign 0.5 yalign 0.5 @@ -46,6 +47,7 @@ screen mirrorlake(): add Frame("gui/button/choice_hover_background.png", 0, 0) text _("%s" % srv["Name"]): color "#FFF" + hover_outlines [(absolute(1), "#000", absolute(0), absolute(0))] xalign 0.5 yalign 0.5 button: @@ -57,6 +59,7 @@ screen mirrorlake(): add Frame("gui/button/choice_hover_background.png", 0, 0) text _("Quit"): color "#FFF" + hover_outlines [(absolute(1), "#000", absolute(0), absolute(0))] xalign 0.5 yalign 0.5 |