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

Project1

 找回密码
 注册会员
搜索

绘制图标失败

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

正文摘要:

新建工程 没有其他插件 为什么使用 this.drawIcon 绘制图标失败 JAVASCRIPT 代码复制(function () {     //继承菜单属性    var siakoMobi_ ...

回复

cenhangkai 发表于 2022-10-5 05:49:56
试了下初始工程,显示图标没有问题。
请你检查下MV引擎的安装目录,里面的  ICON 图片是否存在问题。
lqi991 发表于 2022-10-5 01:33:56
本帖最后由 lqi991 于 2022-10-5 15:10 编辑

# 如果图标图片没问题,那么可能  this.drawIcon 的原对象被修改了.
    可以试试添加以下代码.
方法1:
JAVASCRIPT 代码复制
  1. Window_Custom.prototype.drawIcon = function(iconIndex, x, y) {
  2.     var bitmap = ImageManager.loadSystem('IconSet');
  3.     var pw = Window_Base._iconWidth;
  4.     var ph = Window_Base._iconHeight;
  5.     var sx = iconIndex % 16 * pw;
  6.     var sy = Math.floor(iconIndex / 16) * ph;
  7.     this.contents.blt(bitmap, sx, sy, pw, ph, x, y);
  8. };

方法2:
JAVASCRIPT 代码复制
  1. Window_Custom.prototype.drawIcon = function(iconIndex, x, y) {
  2.     var bitmap = ImageManager.loadSystem('IconSet');
  3.     var pw = Window_Base._iconWidth;
  4.     var ph = Window_Base._iconHeight;
  5.     var sx = iconIndex % 16 * pw;
  6.     var sy = Math.floor(iconIndex / 16) * ph;
  7.     bitmap.addLoadListener(function(){ this.contents.blt(bitmap, sx, sy, pw, ph, x, y);}.bind(this));
  8. };
拿上你的纸笔,建造一个属于你的梦想世界,加入吧。
 注册会员
找回密码

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

GMT+8, 2024-11-17 23:33

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

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