How can I make an image appear behind the battle commands (text)?
I already added some lines of script in Window_Base to show the picture. Like this:
The picture always show above the commands, How can I prevent this?
Can anyone help me with this, please?
I already added some lines of script in Window_Base to show the picture. Like this:
Code:
def draw_border2(x, y)
border2 = RPG::Cache.picture("Border2")
cw = border2.width
ch = border2.height
src_rect = Rect.new(0, 0, cw, ch)
self.contents.blt(x , y - ch, border2, src_rect)
end
The picture always show above the commands, How can I prevent this?
Can anyone help me with this, please?