设为首页收藏本站|繁體中文

Project1

 找回密码
 注册会员
搜索

iconset图标过长导致打包安卓图标变成黑块的问题。

查看数: 878 | 评论数: 3 | 收藏 2
关灯 | 提示:支持键盘翻页<-左 右->
    组图打开中,请稍候......
发布时间: 2023-10-12 01:41

正文摘要:

我自己测试了一下像素到512x4096已经是极限了,超过4096高度图标就变成黑块了。 在论坛内搜了一下只找到了MV的解决方案: KRZ_iconimprove 解决iconset图片 过长黑块的问题 https://rpg.blue/thread-484110-1-1.htm ...

回复

工体大黄蜂 发表于 2023-10-12 22:21:52
小秋橙 发表于 2023-10-12 14:27
Window_Base.prototype.drawIcon = function(iconIndex, x, y) {
    const bitmap = ImageManager.loadSys ...

感谢,我懂了
小秋橙 发表于 2023-10-12 14:27:43
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工具~
工体大黄蜂 发表于 2023-10-12 09:03:46
好像是个好主意,不过该怎么修改呢?
拿上你的纸笔,建造一个属于你的梦想世界,加入吧。
 注册会员
找回密码

站长信箱:[email protected]|手机版|小黑屋|无图版|Project1游戏制作

GMT+8, 2024-11-25 16:58

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表