Bug fixes

* Fixed double fade effect when give_reward label was called
* Fixed Susan's face cum layers not displaying due to wrong file structure
* Fixed card game tutorial highlight placement
* Fixed wardrobe vertical scrollbar styling not adhering to time of day
* Fixed card game tutorial being covered by narrator fade
This commit is contained in:
LoafyLemon 2023-03-28 22:06:48 +01:00
parent 14a92834a0
commit 9f5c99d4d8
7 changed files with 17 additions and 4 deletions

View File

@ -25,7 +25,6 @@ label give_reward(text="You found something!", gift="interface/icons/box_blue_2.
play sound "sounds/win2.ogg"
show screen gift(gift)
show screen blktone
show screen notes
with d3
@ -33,7 +32,6 @@ label give_reward(text="You found something!", gift="interface/icons/box_blue_2.
$ renpy.say(None, text)
hide screen gift
hide screen blktone
hide screen notes
with d3

View File

@ -265,7 +265,7 @@ label deck_builder_guide:
jump deck_builder
screen deck_builder_tutorial():
zorder 4
zorder 18
#imagebutton idle "interface/desk/_bg_.webp" action None
add "images/cardgame/guide/[deck_guide_page].webp"
@ -280,7 +280,7 @@ screen deck_builder_tutorial():
add "images/cardgame/guide/[deck_guide_helper].webp" xpos 540 ypos 300 xalign 0.5 yalign 0.5
if deck_guide_helper == "tier_guide":
add "images/cardgame/guide/[deck_guide_helper].webp" xpos 500 ypos 200 xalign 0.5
add "images/cardgame/guide/[deck_guide_helper].webp" xpos 500 ypos 200 xanchor 0.5
if deck_guide_helper == "cho_stage2":
add "images/cardgame/guide/[deck_guide_helper].webp" xpos 540 ypos 300 xalign 0.5 yalign 0.5

View File

@ -725,6 +725,8 @@ screen wardrobe_menuitem(xx, yy):
mousewheel True
scrollbars "vertical"
style_prefix gui.theme("wardrobe")
for item, icon in zip(menu_items, icon_items):
$ is_seen = item.seen
$ is_equipped = char_active.is_equipped_item(item)
@ -841,6 +843,7 @@ screen wardrobe_outfit_menuitem(xx, yy):
# else:
mousewheel True
scrollbars "vertical"
style_prefix gui.theme("wardrobe")
# Add empty slot
if current_subcategory == "save":
@ -966,3 +969,15 @@ style wardrobe_item_caption:
color "#fff"
size 14
outlines [ (1, "#000", 0, 0) ]
style dark_wardrobe_window is wardrobe_window
style dark_wardrobe_button is wardrobe_button
style darK_wardrobe_button_text is wardrobe_button_text
style dark_wardrobe_item_caption is wardrobe_item_caption
style dark_wardrobe_vscrollbar is dark_vscrollbar
style light_wardrobe_window is wardrobe_window
style light_wardrobe_button is wardrobe_button
style light_wardrobe_button_text is wardrobe_button_text
style light_wardrobe_item_caption is wardrobe_item_caption
style light_wardrobe_vscrollbar is light_vscrollbar