赞 | 669 |
VIP | 62 |
好人卡 | 144 |
积分 | 334 |
经验 | 110435 |
最后登录 | 2024-11-1 |
在线时间 | 5108 小时 |
Lv5.捕梦者
- 梦石
- 0
- 星屑
- 33442
- 在线时间
- 5108 小时
- 注册时间
- 2012-11-19
- 帖子
- 4878
|
可以把位置换一下试下,换到对话窗口之前:
var _Scene_Map_createAllWindows = Scene_Map.prototype.createAllWindows;
Scene_Map.prototype.createAllWindows = function ()
{
this.addChild(new Window_HUD());
_Scene_Map_createAllWindows.call(this);
};
Window_HUD.prototype = Object.create(Window_Base.prototype);
Window_Base.prototype.initialize.call(this, WindowPosition.x, WindowPosition.y, width, height); |
|