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

Project1

 找回密码
 注册会员
搜索

怎么样在选项前加图标

查看数: 1653 | 评论数: 1 | 收藏 0
关灯 | 提示:支持键盘翻页<-左 右->
    组图打开中,请稍候......
发布时间: 2012-8-16 21:43

正文摘要:

像这样的效果

回复

铅笔描绘的思念 发表于 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-13 15:49

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

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