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:
parent
14a92834a0
commit
9f5c99d4d8
@ -25,7 +25,6 @@ label give_reward(text="You found something!", gift="interface/icons/box_blue_2.
|
|||||||
play sound "sounds/win2.ogg"
|
play sound "sounds/win2.ogg"
|
||||||
|
|
||||||
show screen gift(gift)
|
show screen gift(gift)
|
||||||
show screen blktone
|
|
||||||
show screen notes
|
show screen notes
|
||||||
with d3
|
with d3
|
||||||
|
|
||||||
@ -33,7 +32,6 @@ label give_reward(text="You found something!", gift="interface/icons/box_blue_2.
|
|||||||
$ renpy.say(None, text)
|
$ renpy.say(None, text)
|
||||||
|
|
||||||
hide screen gift
|
hide screen gift
|
||||||
hide screen blktone
|
|
||||||
hide screen notes
|
hide screen notes
|
||||||
with d3
|
with d3
|
||||||
|
|
||||||
|
@ -265,7 +265,7 @@ label deck_builder_guide:
|
|||||||
jump deck_builder
|
jump deck_builder
|
||||||
|
|
||||||
screen deck_builder_tutorial():
|
screen deck_builder_tutorial():
|
||||||
zorder 4
|
zorder 18
|
||||||
#imagebutton idle "interface/desk/_bg_.webp" action None
|
#imagebutton idle "interface/desk/_bg_.webp" action None
|
||||||
|
|
||||||
add "images/cardgame/guide/[deck_guide_page].webp"
|
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
|
add "images/cardgame/guide/[deck_guide_helper].webp" xpos 540 ypos 300 xalign 0.5 yalign 0.5
|
||||||
|
|
||||||
if deck_guide_helper == "tier_guide":
|
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":
|
if deck_guide_helper == "cho_stage2":
|
||||||
add "images/cardgame/guide/[deck_guide_helper].webp" xpos 540 ypos 300 xalign 0.5 yalign 0.5
|
add "images/cardgame/guide/[deck_guide_helper].webp" xpos 540 ypos 300 xalign 0.5 yalign 0.5
|
||||||
|
@ -725,6 +725,8 @@ screen wardrobe_menuitem(xx, yy):
|
|||||||
mousewheel True
|
mousewheel True
|
||||||
scrollbars "vertical"
|
scrollbars "vertical"
|
||||||
|
|
||||||
|
style_prefix gui.theme("wardrobe")
|
||||||
|
|
||||||
for item, icon in zip(menu_items, icon_items):
|
for item, icon in zip(menu_items, icon_items):
|
||||||
$ is_seen = item.seen
|
$ is_seen = item.seen
|
||||||
$ is_equipped = char_active.is_equipped_item(item)
|
$ is_equipped = char_active.is_equipped_item(item)
|
||||||
@ -841,6 +843,7 @@ screen wardrobe_outfit_menuitem(xx, yy):
|
|||||||
# else:
|
# else:
|
||||||
mousewheel True
|
mousewheel True
|
||||||
scrollbars "vertical"
|
scrollbars "vertical"
|
||||||
|
style_prefix gui.theme("wardrobe")
|
||||||
|
|
||||||
# Add empty slot
|
# Add empty slot
|
||||||
if current_subcategory == "save":
|
if current_subcategory == "save":
|
||||||
@ -966,3 +969,15 @@ style wardrobe_item_caption:
|
|||||||
color "#fff"
|
color "#fff"
|
||||||
size 14
|
size 14
|
||||||
outlines [ (1, "#000", 0, 0) ]
|
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
|
||||||
|
Loading…
Reference in New Issue
Block a user