I posted this in the sticky at top but figured it may be better on its own:
In Window_Status I've added a bunch of little images with numbers next to them like this:
This works fine in the status menu, but when I exit the menu all the words disappear as they should but the images stay up. How can I delete those images at window close?
Thank you!
~Aeioe
In Window_Status I've added a bunch of little images with numbers next to them like this:
Code:
self.contents.font.color = system_color
self.contents.draw_text(05, 130, 96, 32, "Skills")
@mining = Sprite.new
@mining.bitmap = RPG::Cache.picture("GG Mining")
@mining.x = 20
@mining.y = 180
@mining.z = 100 # 1 - 9999+.
This works fine in the status menu, but when I exit the menu all the words disappear as they should but the images stay up. How can I delete those images at window close?
Thank you!
~Aeioe