【ZeoTerias】RGSS3 - Draw_Gauge_Ex
来源:http://zeoterias.wordpress.com/说明:覆盖并美化默认的槽(例如HP槽MP槽)
效果图:
脚本:#==============================================================================
# RGSS3 - Draw_Gauge_Ex
# By Zeo Terias
# http://zeoterias.wordpress.com/
#==============================================================================
# ■ Window_Base
#==============================================================================
class Window_Base < Window
#--------------------------------------------------------------------------
# ● 绘制值槽
# rate : 比率(1.0 为满值)
# color1 : 渐变色的左端
# color2 : 渐变色的右端
# type : 槽的种类
# 0 尖角
# 1 反转
# 2 原版
#--------------------------------------------------------------------------
def draw_gauge(x, y, width, rate, color1, color2, type = 1)
width -= 2
fill_w = (width * rate).to_i
gauge_y = y + line_height - 8
fill_w /= 2
if type == 0
for i in 0..7
contents.fill_rect(x - i, gauge_y + i, width + 2, 1, gauge_back_color)
if i > 0 and i < 7 and rate != 0
contents.gradient_fill_rect(x - i + 1, gauge_y + i, fill_w, 1, color1, color2)
contents.gradient_fill_rect(x + fill_w - i + 1, gauge_y + i, fill_w, 1, color2, color1)
if rate != 0
contents.fill_rect(x - i + 1, gauge_y + i, 1, 1, color2)
contents.fill_rect(x + fill_w * 2 - i, gauge_y + i, 1, 1, color2)
end
end
end
contents.fill_rect(x + 1, gauge_y + 1, fill_w * 2 - 2, 1, color2)
contents.fill_rect(x - 4, gauge_y + 6, fill_w * 2 - 2, 1, color2)
elsif type == 1
x -= 7
for i in 0..7
contents.fill_rect(x + i, gauge_y + i, width + 2, 1, gauge_back_color)
if i > 0 and i < 7 and rate != 0
contents.gradient_fill_rect(x + i + 1, gauge_y + i, fill_w, 1, color1, color2)
contents.gradient_fill_rect(x + fill_w + i + 1, gauge_y + i, fill_w, 1, color2, color1)
if rate != 0
contents.fill_rect(x + i + 1, gauge_y + i, 1, 1, color2)
contents.fill_rect(x + fill_w * 2 + i, gauge_y + i, 1, 1, color2)
end
end
end
contents.fill_rect(x + 3, gauge_y + 1, fill_w * 2 - 2, 1, color2)
contents.fill_rect(x + 8, gauge_y + 6, fill_w * 2 - 2, 1, color2)
elsif type == 2
contents.fill_rect(x, gauge_y, width + 2, 8, gauge_back_color)
contents.gradient_fill_rect(x + 1, gauge_y + 1, fill_w, 6, color1, color2)
contents.gradient_fill_rect(x + fill_w + 1, gauge_y + 1, fill_w, 6, color2, color1)
if rate != 0
contents.fill_rect(x + 1, gauge_y + 1, 1, 6, color2)
contents.fill_rect(x + fill_w * 2, gauge_y + 1, 1, 6, color2)
end
contents.fill_rect(x + 1, gauge_y + 1, fill_w * 2, 1, color2)
contents.fill_rect(x + 1, gauge_y + 6, fill_w * 2, 1, color2)
end
end
end 真心不错……脚本真简洁{:nm12:}
页:
[1]