readded ADV quick menu with its own style, turned button text back from all caps
This commit is contained in:
parent
09b9e4742b
commit
c89e972253
4 changed files with 36 additions and 14 deletions
Binary file not shown.
|
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 2.1 KiB |
BIN
gui/quick_button_nvl.png
Normal file
BIN
gui/quick_button_nvl.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.1 KiB |
50
screens.rpy
50
screens.rpy
|
|
@ -259,32 +259,58 @@ screen quick_menu():
|
||||||
style "quick_menu_nvl"
|
style "quick_menu_nvl"
|
||||||
|
|
||||||
frame:
|
frame:
|
||||||
background Frame("gui/quick_button.png", 6, 6, 6, 6)
|
background Frame("gui/quick_button_nvl.png", 6, 6, 6, 6)
|
||||||
padding (10, 3, 10, 8)
|
padding (10, 3, 10, 8)
|
||||||
|
|
||||||
textbutton _("BACK") action Rollback()
|
textbutton _("Back") action Rollback()
|
||||||
|
|
||||||
frame:
|
frame:
|
||||||
background Frame("gui/quick_button.png", 6, 6, 6, 6)
|
background Frame("gui/quick_button_nvl.png", 6, 6, 6, 6)
|
||||||
padding (10, 3, 10, 8)
|
padding (10, 3, 10, 8)
|
||||||
|
|
||||||
textbutton _("HISTORY") action ShowMenu('history')
|
textbutton _("History") action ShowMenu('history')
|
||||||
|
|
||||||
frame:
|
frame:
|
||||||
background Frame("gui/quick_button.png", 6, 6, 6, 6)
|
background Frame("gui/quick_button_nvl.png", 6, 6, 6, 6)
|
||||||
padding (10, 3, 10, 8)
|
padding (10, 3, 10, 8)
|
||||||
|
|
||||||
textbutton _("SKIP") action Skip() alternate Skip(fast=True, confirm=True)
|
textbutton _("Skip") action Skip() alternate Skip(fast=True, confirm=True)
|
||||||
|
|
||||||
frame:
|
frame:
|
||||||
background Frame("gui/quick_button.png", 6, 6, 6, 6)
|
background Frame("gui/quick_button_nvl.png", 6, 6, 6, 6)
|
||||||
padding (10, 3, 10, 8)
|
padding (10, 3, 10, 8)
|
||||||
|
|
||||||
textbutton _("AUTO") action Preference("auto-forward", "toggle")
|
textbutton _("Auto") action Preference("auto-forward", "toggle")
|
||||||
|
|
||||||
if mode == "say":
|
if mode == "say":
|
||||||
style "quick_menu"
|
style "quick_menu"
|
||||||
|
|
||||||
|
frame:
|
||||||
|
background Frame("gui/quick_button.png", 9, 9, 8, 8)
|
||||||
|
padding (10, 6, 10, 8)
|
||||||
|
|
||||||
|
textbutton _("Back") action Rollback()
|
||||||
|
|
||||||
|
frame:
|
||||||
|
background Frame("gui/quick_button.png", 9, 9, 8, 8)
|
||||||
|
padding (10, 6, 10, 8)
|
||||||
|
|
||||||
|
textbutton _("History") action ShowMenu('history')
|
||||||
|
|
||||||
|
frame:
|
||||||
|
background Frame("gui/quick_button.png", 9, 9, 8, 8)
|
||||||
|
padding (10, 6, 10, 8)
|
||||||
|
|
||||||
|
textbutton _("Skip") action Skip() alternate Skip(fast=True, confirm=True)
|
||||||
|
|
||||||
|
frame:
|
||||||
|
background Frame("gui/quick_button.png", 9, 9, 8, 8)
|
||||||
|
padding (10, 6, 10, 8)
|
||||||
|
|
||||||
|
textbutton _("Auto") action Preference("auto-forward", "toggle")
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# textbutton _("Save") action ShowMenu('save')
|
# textbutton _("Save") action ShowMenu('save')
|
||||||
# textbutton _("Q.Save") action QuickSave()
|
# textbutton _("Q.Save") action QuickSave()
|
||||||
# textbutton _("Q.Load") action QuickLoad()
|
# textbutton _("Q.Load") action QuickLoad()
|
||||||
|
|
@ -303,12 +329,8 @@ style quick_button is default
|
||||||
style quick_button_text is button_text
|
style quick_button_text is button_text
|
||||||
|
|
||||||
style quick_menu:
|
style quick_menu:
|
||||||
# hacky way to make them not show up for now but i dont really gaf. its easier than any of the other implementations ive played with so far
|
xalign 1.0
|
||||||
|
yalign 1.0
|
||||||
xpos 50000
|
|
||||||
ypos 50000
|
|
||||||
# xalign 0.5
|
|
||||||
# yalign 1.0
|
|
||||||
|
|
||||||
style quick_menu_nvl:
|
style quick_menu_nvl:
|
||||||
xalign 0.92
|
xalign 0.92
|
||||||
|
|
|
||||||
BIN
screens.rpyc
BIN
screens.rpyc
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue