Project1
标题:
怎么显示金币图啊?
[打印本页]
作者:
八喜
时间:
2014-8-6 18:42
标题:
怎么显示金币图啊?
哀家新人一枚,,
最近发现别人的饭粒的金币槽里都有一个金币的图像
请问这个要怎么弄啊?
作者:
千夙
时间:
2014-8-6 18:44
你说的是介个?把这脚本插入main上面就行了
#----显示金币图像,index图是你制作物品的那张图,留意那张图的左下角,那里有坐标
class Window_Gold < Window_Base
#--------------------------------------------------------------------------
# 显示一个图标
#--------------------------------------------------------------------------
def refresh
contents.clear
draw_icon(361,0,0)#~ 这个361就是那个坐标,可以改,改成你index里的任意图像
draw_currency_value(value, currency_unit, 0, 0, contents.width + 4)
end
end
复制代码
作者:
VIPArcher
时间:
2014-8-6 20:15
本帖最后由 VIPArcher 于 2014-8-19 15:21 编辑
金币?你是说金币窗口的货币单位用图标显示吗?
那就这样
QQ图片20140804210536.jpg
(5.81 KB, 下载次数: 22)
下载附件
保存到相册
2014-8-6 20:17 上传
class Window_Base < Window
#--------------------------------------------------------------------------
# ● 绘制货币数值(持有金钱之类的)
#--------------------------------------------------------------------------
def draw_currency_value(value, unit, x, y, width)
cx = 24#text_size(unit).width
change_color(normal_color)
draw_text(x, y, width - cx - 2, line_height, value, 2)
# change_color(system_color)
# draw_text(x, y, width, line_height, unit, 2)
draw_icon(361,x + width - 24,y)
end
end
复制代码
作者:
八喜
时间:
2014-8-6 20:47
谢谢,可以了
欢迎光临 Project1 (https://rpg.blue/)
Powered by Discuz! X3.1