赞 | 97 |
VIP | 0 |
好人卡 | 1 |
积分 | 76 |
经验 | 10334 |
最后登录 | 2024-6-22 |
在线时间 | 1227 小时 |
Lv4.逐梦者
- 梦石
- 0
- 星屑
- 7618
- 在线时间
- 1227 小时
- 注册时间
- 2008-12-14
- 帖子
- 555
|
/*
* 实现自动换行小功能。
*/
Window_Selectable.prototype.processNormalCharacter = Window_Base.prototype.processNormalCharacter;
Window_Base.prototype.processNormalCharacter = function(textState) {
var c = textState.text[textState.index];
var w = this.textWidth(c);
if (this.width - 2 * this.standardPadding() - textState.x >= w){
this.contents.drawText(c, textState.x, textState.y, w * 2, textState.height);
textState.index++;
textState.x += w;
}else{
this.processNewLine(textState);
textState.index--;
this.processNormalCharacter(textState);
}
}; |
|