From 19f49924d641f89a23ad473ea539d40cdd66ff47 Mon Sep 17 00:00:00 2001 From: Gouvernathor <44340603+Gouvernathor@users.noreply.github.com> Date: Sat, 11 Nov 2023 21:29:33 +0100 Subject: [PATCH] The invisible_button screen --- game/scripts/utility/common_screens.rpy | 3 +++ 1 file changed, 3 insertions(+) diff --git a/game/scripts/utility/common_screens.rpy b/game/scripts/utility/common_screens.rpy index d6853ee6..de8e5484 100644 --- a/game/scripts/utility/common_screens.rpy +++ b/game/scripts/utility/common_screens.rpy @@ -56,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.