赞 | 35 |
VIP | 0 |
好人卡 | 0 |
积分 | 73 |
经验 | 0 |
最后登录 | 2024-11-22 |
在线时间 | 475 小时 |
Lv4.逐梦者
- 梦石
- 0
- 星屑
- 7289
- 在线时间
- 475 小时
- 注册时间
- 2021-12-4
- 帖子
- 514
|
Window_Base.prototype.drawIcon = function(iconIndex, x, y) {
const bitmap = ImageManager.loadSystem("IconSet");
const pw = ImageManager.iconWidth;
const ph = ImageManager.iconHeight;
const sx = (iconIndex % 16) * pw;
const sy = Math.floor(iconIndex / 16) * ph;
this.contents.blt(bitmap, sx, sy, pw, ph, x, y);
}; // rmmz_windows.js 第455行
先修改这里的两个16为更大的倍数,比如都改为64。然后需要使用支持透明度的绘图工具(如win10的 画图3d),把图片的每几行(比如64/16=4行)合并为一行。或者加Q群568785370获取32*32格子的便捷ps工具~ |
|