Envision, Create, Share

Welcome to HBGames, a leading amateur game development forum and Discord server. All are welcome, and amongst our ranks you will find experts in their field from all aspects of video game design and development.

Making Status Bars disappear

Is there any way that you can make the status menu stuff on the bottom of the screen (ie. HP, SP, etc) disappear? It would be nice for cutscenes if you did not see all of this stuff.
 

EOG

Member

If you mean status bar in battle it is possible.

Put this somewhere before Main
Code:
 

class Scene_Battle

  def hide

    @status_window.visible = false

    return

  end #def

  def show

    @status_window.visible = true

    return

  end #def

end #class

 
In battle event use
Code:
$scene.hide
to hide
Code:
$scene.show
to show status bar

It looks ugly 'cause behind status bar there is black screen and hero battlers are still visable(you can hide them)

If you want something more post it here or PM me.

If you mean anaother status menu then tell which one.
 

Thank you for viewing

HBGames is a leading amateur video game development forum and Discord server open to all ability levels. Feel free to have a nosey around!

Discord

Join our growing and active Discord server to discuss all aspects of game making in a relaxed environment. Join Us

Content

  • Our Games
  • Games in Development
  • Emoji by Twemoji.
    Top