Compare commits

...

3 Commits

Author SHA1 Message Date
Gouvernathor 19f49924d6 The invisible_button screen 2023-11-11 21:29:33 +01:00
Gouvernathor 48ab47b45e The notes screen 2023-11-11 21:29:23 +01:00
Gouvernathor 133c2a41ec solid colors and gradients 2023-11-11 21:29:10 +01:00
1 changed files with 40 additions and 24 deletions

View File

@ -1,32 +1,45 @@
screen blkfade():
tag blkfade
zorder 25
add Color("#000")
image blkfade = "#000"
define config.tag_layer["blkfade"] = "screens"
define config.tag_zorder["blkfade"] = 25
# show screen blkfade -> show blkfade
# hide screen blkfade -> hide blkfade
screen whitefade():
tag whitefade
zorder 25
add Color("#fff")
image whitefade = "#fff"
define config.tag_layer["whitefade"] = "screens"
define config.tag_zorder["whitefade"] = 25
# show screen whitefade -> show whitefade
# hide screen whitefade -> hide whitefade
screen blktone(alpha=0.5):
tag blktone
zorder 14
add Color("#000", alpha=alpha)
image blktone = "#0008"
define config.tag_layer["blktone"] = "screens"
define config.tag_zorder["blktone"] = 14
# show screen blktone -> show blktone
# hide screen blktone -> hide blktone
# (the parameter was never actually passed, so the alpha was always .5)
# to have arbitrary alpha,
# show screen blktone(.725) -> show blkfade at Transform(alpha=.725) as blktone
# I *think* that puts it at zorder 14
screen white():
zorder 20
add Color("#fff")
image white = "#fff"
define config.tag_layer["white"] = "screens"
define config.tag_zorder["white"] = 20
# show screen white -> show white
# hide screen white -> hide white
screen bld1():
zorder 10
tag bld1
image bld1 = "interface/bld.webp"
define config.tag_layer["bld1"] = "screens"
define config.tag_zorder["bld1"] = 10
# show screen bld1 -> show bld1
# hide screen bld1 -> hide bld1
add "interface/bld.webp"
screen bld2():
zorder 10
add Transform("interface/bld.webp", yzoom=-1.0)
image bld2 = Transform("interface/bld.webp", yzoom=-1.0)
define config.tag_layer["bld2"] = "screens"
define config.tag_zorder["bld2"] = 10
# show screen bld2 -> show bld2
# hide screen bld2 -> hide bld2
# that one needs a rename to be optimized
# (the newly named goes onlayer screens at the given pos and zorder, the original animation onlayer master)
screen notes():
add "notes" xpos 320+140 ypos 330
zorder 1
@ -35,7 +48,7 @@ screen clothing_unlock(item):
zorder 30
modal True
use notes
use notes # add "renamed_notes"
on "show" action Play("sound", "sounds/win2.ogg")
if isinstance(item, DollCloth):
@ -43,6 +56,9 @@ screen clothing_unlock(item):
elif isinstance(item, DollOutfit):
add item.image align (0.5, 0.0) yoffset -50 zoom 0.4
# should be replaced with the dismiss screen element
# there is no equivalent of the alternate property though
# but there should, but it's only used in one instance (so the other can have a dismiss in the meantime)
screen invisible_button(action=NullAction(), keysym=None, alternate=None):
# Note: Actions cannot be passed as transclude, separate parameter is required.