赞 | 35 |
VIP | 0 |
好人卡 | 0 |
积分 | 72 |
经验 | 0 |
最后登录 | 2024-11-16 |
在线时间 | 474 小时 |
Lv4.逐梦者
- 梦石
- 0
- 星屑
- 7247
- 在线时间
- 474 小时
- 注册时间
- 2021-12-4
- 帖子
- 513
|
- //-----------------------------------------------------------------------------
- // Window_Help
- // rpg_windows.js第1470行,可以修改下面的这些函数来更改帮助窗口的文字
- // The window for displaying the description of the selected item.
- function Window_Help() {
- this.initialize.apply(this, arguments);
- }
- Window_Help.prototype = Object.create(Window_Base.prototype);
- Window_Help.prototype.constructor = Window_Help;
- Window_Help.prototype.initialize = function(numLines) {
- var width = Graphics.boxWidth;
- var height = this.fittingHeight(numLines || 2);
- Window_Base.prototype.initialize.call(this, 0, 0, width, height);
- this._text = '';
- };
- Window_Help.prototype.setText = function(text) {
- if (this._text !== text) {
- this._text = text;
- this.refresh();
- }
- };
- Window_Help.prototype.clear = function() {
- this.setText('');
- };
- Window_Help.prototype.setItem = function(item) {
- this.setText(item ? item.description : '');
- };
- Window_Help.prototype.refresh = function() {
- this.contents.clear();
- this.drawTextEx(this._text, this.textPadding(), 0);
- };
复制代码 |
|