Project1
标题: 修改金钱脚本问题 [打印本页]
作者: 347780682 时间: 2015-11-2 17:07
标题: 修改金钱脚本问题
本帖最后由 347780682 于 2015-11-2 17:43 编辑
我在调整金钱的显示方向时把脚本
def refresh
contents.clear
draw_currency_value(value, currency_unit, 4, 0, contents.width - 8)
end
def refresh
contents.clear
draw_currency_value(value, currency_unit, 4, 0, contents.width - 8)
end
换成了这个,但是会出现在商店买完物品后金币单位不会显示余额,求破
def refresh
draw_text(x+95, 0, contents.width - 8, line_height, value)
change_color(system_color)
draw_text(x-2, 0, contents.width - 8, line_height, currency_unit)
end
def refresh
draw_text(x+95, 0, contents.width - 8, line_height, value)
change_color(system_color)
draw_text(x-2, 0, contents.width - 8, line_height, currency_unit)
end
作者: taroxd 时间: 2015-11-2 17:55
请确认绘制的文字在窗口内部。正常情况来说,绘制文字的横坐标是不会加上窗口的 x 坐标的。
作者: 347780682 时间: 2015-11-2 18:06
taroxd 发表于 2015-11-2 17:55
请确认绘制的文字在窗口内部。正常情况来说,绘制文字的横坐标是不会加上窗口的 x 坐标的。 ...
多谢大大 我按照你的方法改了他能显示数字了 但是购买后金钱数字却变成蓝色了- def refresh
- contents.clear
- draw_text(95, 0, contents.width - 8, line_height, value)
- change_color(system_color)
- draw_text(2, 0, contents.width - 8, line_height, currency_unit)
- end
复制代码
欢迎光临 Project1 (https://rpg.blue/) |
Powered by Discuz! X3.1 |