#--------------------------------------------------------------------------
# ● 绘制货币数值(持有金钱之类的)
#--------------------------------------------------------------------------
def draw_currency_value(value, unit, x, y, width)
cx = 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, y, true) #默认为图标中361编号的图标,换了图标的孩子要自己选择哦~VA自己告诉=w=好激动
end
#--------------------------------------------------------------------------
# ● 绘制货币数值(持有金钱之类的)
#--------------------------------------------------------------------------
def draw_currency_value(value, unit, x, y, width)
cx = 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, y, true) #默认为图标中361编号的图标,换了图标的孩子要自己选择哦~VA自己告诉=w=好激动
end