马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?立即注册
×
先贴代码
[RenPy] 纯文本查看 复制代码 default extra_top_menu_lists = {
"default" : {
"buttons": [
_("人物"),
_("武器"),
_("法术"),
_("地点"),
_("战斗")
]
},
}
screen extra():
tag menu
add "gui/file.png"
frame:
id "leibie"
xpos 0.23
ypos 0.06
has hbox
style_prefix "filetop"
for i in extra_top_menu_lists["default"]["buttons"]:
textbutton i:
action ShowTransient("extra_left_menu", name = i)
null width 40
style filetop_button_text:
hover_outlines [ (0, "#0000") ]
idle_outlines [ (0, "#0000") ]
hover_color "#000"
selected_color "#fff"
idle_color "#555"
不管怎么设置样式
只要点选其中一个按钮,其他按钮也会变成被选中状态的白色
这是什么原因啊
|