rect.height = 96 #size#追加
self.contents.blt(x, y, bitmap, rect)
bitmap.dispose
end
#--------------------------------------------------------------------------
# ☆ HP の描画 <追加変更>
# actor : アクター
# x : 描画先 X 座標
# y : 描画先 Y 座標
# width : 幅
#--------------------------------------------------------------------------
def draw_actor_hp(actor, x, y, width = 120)
ms = self.contents.font.size/2 #追加
draw_actor_hp_gauge(actor, x, y, width)
self.contents.font.color = system_color
self.contents.draw_text(x, y+2, 30, WLH, Vocab::hp_a) #追加
self.contents.font.color = hp_color(actor)
xr = x + width
if width <90 #追加
self.contents.draw_text(xr - ms*4, y+2, ms*4, WLH, actor.hp, 2) #追加
else
self.contents.draw_text(xr - ms*9, y+2, ms*4, WLH, actor.hp, 2) #追加
self.contents.font.color = normal_color #追加
self.contents.draw_text(xr - ms*5, y+2, ms, WLH, "/", 2) #追加
self.contents.draw_text(xr - ms*4, y+2, ms*4, WLH, actor.maxhp, 2)#追加
end
end
#--------------------------------------------------------------------------
# ☆ MP の描画 <追加変更>
# actor : アクター
# x : 描画先 X 座標
# y : 描画先 Y 座標
# width : 幅
#--------------------------------------------------------------------------
def draw_actor_mp(actor, x, y, width = 120)
ms = self.contents.font.size/2 #追加