赞 | 11 |
VIP | 0 |
好人卡 | 0 |
积分 | 24 |
经验 | 0 |
最后登录 | 2022-9-20 |
在线时间 | 363 小时 |
Lv3.寻梦者
- 梦石
- 0
- 星屑
- 2389
- 在线时间
- 363 小时
- 注册时间
- 2021-2-8
- 帖子
- 149
|
window.js 里找到下面这段
//-----------------------------------------------------------------------------
// Window_MapName
//
// The window for displaying the map name on the map screen.
function Window_MapName() {
this.initialize.apply(this, arguments);
}
Window_MapName.prototype = Object.create(Window_Base.prototype);
Window_MapName.prototype.constructor = Window_MapName;
Window_MapName.prototype.initialize = function() {
var wight = this.windowWidth();
var height = this.windowHeight();
Window_Base.prototype.initialize.call(this, 0, 0, wight, height); //标红的是XY坐标自己调
this.opacity = 0;
this.contentsOpacity = 0;
this._showCount = 0;
this.refresh();
};
Window_MapName.prototype.open = function() {
this.refresh();
this._showCount = 150; //这个数字越大显示的时间越久
}; |
|