I'm trying to place the Help window in the middle and bottom of the enemy battler, but I'm having some trouble finding the bottom, i.e., finding the height of the bitmap so that I can subtract half of it from Help_Window.y. This is what I've got so far:
any help on this would be appreciated.
Code:
def update_help
@help_window.x = self.enemy.screen_x
@help_window.y = self.enemy.screen_y - ([b]self.enemy.battler_name.height/2[/b])
@help_window.width = 160
@help_window.set_enemy(self.enemy)
end
any help on this would be appreciated.