赞 | 153 |
VIP | 10 |
好人卡 | 39 |
积分 | 93 |
经验 | 146191 |
最后登录 | 2024-5-6 |
在线时间 | 2504 小时 |
Lv4.逐梦者
- 梦石
- 0
- 星屑
- 9280
- 在线时间
- 2504 小时
- 注册时间
- 2011-5-20
- 帖子
- 15389
|
寂寞你来得快 发表于 2014-10-17 05:29
恩我就是想知道怎么把档位栏改大
Window_SaveFile里面···- def initialize(height, index)
- super(0, index * height, Graphics.width, height)
- @file_index = index
- refresh
- @selected = false
- end
- #--------------------------------------------------------------------------
- # ● 刷新
- #--------------------------------------------------------------------------
- def refresh
- contents.clear
- change_color(normal_color)
- name = Vocab::File + " #{@file_index + 1}"
- draw_text(4, 0, 200, line_height, name)
- @name_width = text_size(name).width
- draw_party_characters(152, 58)
- draw_playtime(0, contents.height - line_height, contents.width - 4, 2)
- end
复制代码 的- super(0, index * height, Graphics.width, height)
复制代码 和,高度就改height,位置需要改index*height里面的height··· |
评分
-
查看全部评分
|