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

Project1

 找回密码
 注册会员
搜索
查看: 3037|回复: 1
打印 上一主题 下一主题

[已经解决] 请教一个有关icon的问题

[复制链接]

Lv1.梦旅人

梦石
0
星屑
95
在线时间
268 小时
注册时间
2010-12-22
帖子
21
跳转到指定楼层
1
发表于 2016-2-21 00:30:42 | 只看该作者 |只看大图 回帖奖励 |倒序浏览 |阅读模式

加入我们,或者,欢迎回来。

您需要 登录 才可以下载或查看,没有帐号?注册会员

x
最近在做自己的UI介面, 并建了一个windows 用来贴icon , 我想改变这个icon的比例却苦苦找不到他的参数在哪, 希望各位大大可以替我解答,请观看图片

問題.jpg (156.42 KB, 下载次数: 14)

問題

問題

Lv2.观梦者

梦石
0
星屑
642
在线时间
165 小时
注册时间
2012-4-18
帖子
264
2
发表于 2016-2-21 11:13:01 | 只看该作者
YEP_Itmecore。里面有一段关于在道具界面显示道具详情时,绘制一个超大的图标的代码,可惜我也没有解析成功,贴给你看看,希望能够帮助你。
  1. Window_ItemStatus.prototype.drawLargeIcon = function() {
  2.     var iconIndex = this._item.iconIndex;
  3.     var bitmap = ImageManager.loadSystem('IconSet');
  4.     var pw = Window_Base._iconWidth;
  5.     var ph = Window_Base._iconHeight;
  6.     var sx = iconIndex % 16 * pw;
  7.     var sy = Math.floor(iconIndex / 16) * ph;
  8.     var dw = Yanfly.Param.ItemIconSize;
  9.     var dh = Yanfly.Param.ItemIconSize;
  10.     var dx = (Window_Base._faceWidth - dw) / 2;
  11.     var dy = (Window_Base._faceHeight - dh) / 2;
  12.     this.contents._context.imageSmoothingEnabled = false;
  13.     this.contents.blt(bitmap, sx, sy, pw, ph, dx, dy, dw, dh);
  14.     this.contents._context.imageSmoothingEnabled = true;
  15. };
复制代码

点评

不客气,能够帮助你我也很高兴。  发表于 2016-2-22 22:08
感謝 我找到改法了this.contents.blt(bitmap, sx, sy, pw, ph, dx, dy, dw, dh); dw , dh 參數加上去就會改變了  发表于 2016-2-21 15:55

评分

参与人数 1星屑 +166 收起 理由
余烬之中 + 166 认可答案

查看全部评分

回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册会员

本版积分规则

拿上你的纸笔,建造一个属于你的梦想世界,加入吧。
 注册会员
找回密码

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

GMT+8, 2024-12-23 11:40

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

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