马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?立即注册
×
本帖最后由 被诅咒的章鱼 于 2023-7-3 08:37 编辑
[RenPy] 纯文本查看 复制代码
init python:
resolution_options = [
("1280x800", (1280, 800)),
("1920x1080", (1920, 1080)),
("2560x1600", (2560, 1600)),
("4096x2160", (4096, 2160))
config.resolution = resolution_options[1[1
label start:
"点击【设置】按钮来调整分辨率。"
button _("设置") action ShowMenu(resolution_menu):
screen resolution_menu:
vbox:
for name, resolution in resolution_options:
textbutton name action Function(set_resolution, resolution[0, resolution[1)
label set_resolution(width, height):
$ renpy.screen_width = width
$ renpy.screen_height = height
$ renpy.restart_interaction()
|