def draw_actor_xparam(actor, x, y, xparam_id)
change_color(normal_color)
draw_text(x, y, 80, line_height, "这里是特殊属性的名称")
change_color(text_color(17))
v = (format("%.2f",actor.xparam(xparam_id)).to_f * 100).to_i
draw_text(x + 80, y, 45, line_height, v.to_s + "%", 2)
end
def draw_actor_xparam(actor, x, y, xparam_id)
change_color(normal_color)
draw_text(x, y, 80, line_height, "这里是特殊属性的名称")
change_color(text_color(17))
v = (format("%.2f",actor.xparam(xparam_id)).to_f * 100).to_i
draw_text(x + 80, y, 45, line_height, v.to_s + "%", 2)
end