加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
本帖最后由 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
|