I am able to add a hero face pictures in my window_battlestatus with the help of SephirothSpawn.
But what I need is the picture only shows when the actor are active for command. For example if it's actor 1 turn, his picture shows. If not it's just blank(no picture show). How can I do something like that?
Code:
class Window_Base
def draw_face(actor, x, y)
bitmap = RPG::Cache.character("BattlerFaces/#{actor.character_name}", actor.character_hue)
self.contents.blt(x, y, bitmap, Rect.new(0, 0, bitmap.width, bitmap.height))
end
end
But what I need is the picture only shows when the actor are active for command. For example if it's actor 1 turn, his picture shows. If not it's just blank(no picture show). How can I do something like that?