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

Project1

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

[已经解决] 怎么样在选项前加图标

[复制链接]

Lv2.观梦者

梦石
0
星屑
615
在线时间
84 小时
注册时间
2012-8-12
帖子
178
跳转到指定楼层
1
发表于 2012-8-16 21:43:56 | 只看该作者 |只看大图 回帖奖励 |倒序浏览 |阅读模式

像这样的效果

1817469rwbj393yaaq09rw.png (52.76 KB, 下载次数: 16)

1817469rwbj393yaaq09rw.png

Lv3.寻梦者

梦石
0
星屑
1374
在线时间
962 小时
注册时间
2012-4-30
帖子
1475

开拓者

2
发表于 2012-8-16 22:11:00 | 只看该作者
这个效果貌似是外站的  不过这样简单多。。
  1. #==============================================================================
  2. # ■ 显示图标的Window_Command BY 仲秋启明
  3. #------------------------------------------------------------------------------
  4. #  使用方法:在选项前加上"#{X}"即可
  5. #            比如:s1 = "#{12}" + Vocab::new_game
  6. #==============================================================================
  7. class Window_Command < Window_Selectable
  8.   #--------------------------------------------------------------------------
  9.   # ● 绘制项目
  10.   #     index   : 项目位置
  11.   #     enabled : 有效标志,false时项目半透明化
  12.   #--------------------------------------------------------------------------
  13.   def draw_item(index, enabled = true)
  14.     rect = item_rect(index)
  15.     rect.x += 4
  16.     rect.width -= 8
  17.     self.contents.clear_rect(rect)
  18.     self.contents.font.color = normal_color
  19.     self.contents.font.color.alpha = enabled ? 255 : 128
  20.     if /^(\d+)/ =~ @commands[index]
  21.       draw_icon($1.to_i, rect.x, rect.y, enabled)
  22.       rect.x += 26
  23.       rect.width -= 26
  24.       self.contents.draw_text(rect, )
  25.     else
  26.       self.contents.draw_text(rect, commands[index])
  27.     end
  28.   end
  29. end
复制代码

点评

[url=home.php?mod=space&username=铅笔描绘的思念]@铅笔描绘的思念[/url]选项在哪个脚本中额~我一直找不到的说,还有我看不懂使用说明 = =  发表于 2012-8-20 18:36
好漂亮、可惜我不能给糖果= =还是赞一个吧……  发表于 2012-8-20 18:34

评分

参与人数 1星屑 +100 收起 理由
Luciffer + 100 最好给出详细帮助~

查看全部评分

回复

使用道具 举报

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

本版积分规则

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

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

GMT+8, 2024-11-11 06:17

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

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