so im adding face graphic of characters in my window_battlestatus. but the image cover eevrything there. such as the HP,MP, Bars, Stats, etc. how can i make the face picture behind everything else?
the codes. i add this in window_base
then i add this in window_battlestatus above draw_actor_name
draw_actor_battler_face(actor, x, y)
i have also tried to put that below everything else but the picture still cover everything else.
how can i fix this?
the codes. i add this in window_base
Code:
def draw_actor_battler_face(actor, x,y)
face = RPG::Cache.character("BattlerFaces/" + actor.character_name, actor.character_hue)
fw = face.width
fh = face.height
src_rect = Rect.new(0, 0, fw, fh)
self.contents.blt(x - fw / 23, y - fh, face, src_rect)
end
then i add this in window_battlestatus above draw_actor_name
draw_actor_battler_face(actor, x, y)
i have also tried to put that below everything else but the picture still cover everything else.
how can i fix this?