Chaos Project

RPG Maker => General Discussion => Troubleshooting / Help => Topic started by: ShinyToyGuns on February 14, 2010, 04:47:22 pm

Title: [XP-SOLVED] Removing the Steps Window
Post by: ShinyToyGuns on February 14, 2010, 04:47:22 pm
Hey all,
As the title implies, how do I go about removing the Steps window? With Blizz ABS, it doesn't seem to work, so I don't see a point in keeping it. I've tried removing the following lines from Scene_Menu, but when I did, it just left a black box:
# Make steps window
   @steps_window = Window_Steps.new
   @steps_window.x = 0
   @steps_window.y = 320
...
   @steps_window.update

I want to remove the Steps window, or at least configure it to work with Blizz ABS, but I don't want a giant gap left behind...Please help.
~Steven a.k.a. ShinyToyGuns~


Title: Re: [XP] Removing the Steps Window
Post by: Aqua on February 14, 2010, 04:57:13 pm
You did remove it...
The black "box" is the default background of the Scene on which all the other windows are built.

If you don't want the blackness, you'd either need to put another window there or use a different background.
Title: Re: [XP] Removing the Steps Window
Post by: ShinyToyGuns on February 14, 2010, 04:58:57 pm
How would I use a different background?

Edit:
Nevermind, I realized that I can just remove the text from Window_Steps :P