Project1

标题: 怎么显示金币图啊? [打印本页]

作者: 八喜    时间: 2014-8-6 18:42
标题: 怎么显示金币图啊?
哀家新人一枚,,
最近发现别人的饭粒的金币槽里都有一个金币的图像
请问这个要怎么弄啊?
作者: 千夙    时间: 2014-8-6 18:44
你说的是介个?把这脚本插入main上面就行了
  1. #----显示金币图像,index图是你制作物品的那张图,留意那张图的左下角,那里有坐标
  2. class Window_Gold < Window_Base
  3.   #--------------------------------------------------------------------------
  4.   # 显示一个图标
  5.   #--------------------------------------------------------------------------
  6.   def refresh
  7.     contents.clear
  8. draw_icon(361,0,0)#~  这个361就是那个坐标,可以改,改成你index里的任意图像
  9.     draw_currency_value(value, currency_unit, 0, 0, contents.width + 4)
  10.   end
  11. end
复制代码

作者: VIPArcher    时间: 2014-8-6 20:15
本帖最后由 VIPArcher 于 2014-8-19 15:21 编辑

金币?你是说金币窗口的货币单位用图标显示吗?
那就这样
  1. class Window_Base < Window
  2.   #--------------------------------------------------------------------------
  3.   # ● 绘制货币数值(持有金钱之类的)
  4.   #--------------------------------------------------------------------------
  5.   def draw_currency_value(value, unit, x, y, width)
  6.     cx = 24#text_size(unit).width
  7.     change_color(normal_color)
  8.     draw_text(x, y, width - cx - 2, line_height, value, 2)
  9. #   change_color(system_color)
  10. #   draw_text(x, y, width, line_height, unit, 2)
  11.     draw_icon(361,x +  width - 24,y)
  12.   end
  13. end
复制代码

作者: 八喜    时间: 2014-8-6 20:47
谢谢,可以了




欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1