| 赞 | 57 |
| VIP | 0 |
| 好人卡 | 0 |
| 积分 | 38 |
| 经验 | 9754 |
| 最后登录 | 2025-10-27 |
| 在线时间 | 487 小时 |
Lv3.寻梦者
- 梦石
- 0
- 星屑
- 3781
- 在线时间
- 487 小时
- 注册时间
- 2013-12-7
- 帖子
- 345
|
本帖最后由 ekmomo 于 2018-3-8 16:14 编辑
或者这样的。
Window_BattleSkill.prototype.drawItemName = function(item, x, y, width) {
width = 64;
if (item) {
var iconBoxWidth = Window_Base._iconWidth + 4;
this.resetTextColor();
this.drawIcon(item.iconIndex, x + 2, y + 2);
this.contents.fontSize = 18;
this.drawText(item.name, x, y + 32, 64, 'center');
}
};
Window_BattleSkill.prototype.drawIcon = function(iconIndex, x, y) {
var bitmap = ImageManager.loadSystem('IconSet');
var pw = Window_Base._iconWidth;
var ph = Window_Base._iconHeight;
var sx = iconIndex % 16 * pw;
var sy = Math.floor(iconIndex / 16) * ph;
this.contents.blt(bitmap, sx, sy, pw, ph, x, y, 64, 64);
};
Window_BattleSkill.prototype.itemWidth = function() {
return 68;
};
Window_BattleSkill.prototype.itemHeight = function() {
return 68;
}; |
|