赞 | 2 |
VIP | 143 |
好人卡 | 1 |
积分 | 1 |
经验 | 216792 |
最后登录 | 2019-10-10 |
在线时间 | 24 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 61
- 在线时间
- 24 小时
- 注册时间
- 2008-8-5
- 帖子
- 1924
|
super 那里改左上角坐标没用,因为后来 x 和 y 又被赋了新值
Scene_Menu 里有两行:@status_window.x = 295
@status_window.y = 110 改这里就能移动窗口左上角的位置,而在下面有个地方限制了 x 最小只能是 192:if @status_window.x > 195
@status_window.x -= 10
@status_window.contents_opacity += 10
elsif @status_window.x <= 195
@status_window.x = 195
@status_window.contents_opacity = 255
end 宽度和高度在 Window_MenuStatus2 的 super 那里改~
不过改了之后就和窗口的背景不匹配了,他这个窗口整个背景是一张图:
系统信息:本贴由本区版主认可为正确答案,66RPG感谢您的热情解答~ |
|