马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?立即注册
×
[RenPy] 纯文本查看 复制代码 style quick_button:
properties gui.button_properties("quick_button")
activate_sound "audio/se/909 clav.ogg"
hover_sound "audio/se/808 clav.ogg"
[RenPy] 纯文本查看 复制代码 if quick_menu:
hbox:
style_prefix "quick"
xalign 0.95
yalign 0.99
#textbutton _("返回") action Rollback()
imagebutton auto "gui/button/back_%s.png" action ShowMenu('history')
imagebutton auto "gui/button/auto_%s.png" action Preference("auto-forward", "toggle")
imagebutton auto "gui/button/pass_%s.png" action Skip() alternate Skip(fast=True, confirm=True)
imagebutton auto "gui/button/save_%s.png" action ShowMenu('save')
imagebutton auto "gui/button/load_%s.png" action ShowMenu('load')
imagebutton auto "gui/button/settings_%s.png" action ShowMenu('preferences')
|