赞 | 159 |
VIP | 0 |
好人卡 | 0 |
积分 | 263 |
经验 | 0 |
最后登录 | 2024-11-13 |
在线时间 | 5354 小时 |
Lv5.捕梦者
- 梦石
- 0
- 星屑
- 26259
- 在线时间
- 5354 小时
- 注册时间
- 2016-3-8
- 帖子
- 1655
|
本帖最后由 alexncf125 于 2021-1-18 00:22 编辑
游戏原本的装备穿戴里饰品只能装备一个,有没有办法再多加一个? https://raw.githubusercontent.com/VIPArcher/RGSS3/master/scripts/装备栏风格扩展.rb
还有就是菜单里的状态栏显示的6项基本数值和血条显示的数字如果多了会缩在一起,看起来难受,有无方法让数字显示变宽一点? 最简单的解決方法是加句 Font.default_size = 22
麻烦点的解決方法是在Window_Base的第484-495行把宽度调大...比如这样子:
def draw_current_and_max_values(x, y, width, current, max, color1, color2)
change_color(color1)
xr = x + width
if width < 96
draw_text(xr - 40, y, 42+4, line_height, current, 2)
else
draw_text(xr - 92, y, 42+4, line_height, current, 2)
change_color(color2)
draw_text(xr - 52-4, y, 12+4, line_height, "/", 2)
draw_text(xr - 42, y, 42+4, line_height, max, 2)
end
end
菜单里的状态栏显示的6项基本数值, 只是三位数的话, 我这边没缩在一起喔...装备界面显示的倒是会缩在一起...
在 Window_EquipStatus 的 def draw_current_param 和 def draw_new_param 把 32+4 |
|