Remove Menu Blur

● ARCHIVED · READ-ONLY
Started by polisen11 5 posts View original ↗
  1. I am using a tranculent windowskin and when I pause the game, the screen (behind the menu) becames "blurry" if you know what I mean. Is there anyway to remove that?


    I am creating a custom menu and I want to add a picture under the menu, but it gets blurred out when the menu pops up.


    I know there is AltMenuScreen addons, but I need to change the background during the game (often), so those plugins is not an option I am affraid, since you can't change menu background during the game.


    So what I am looking for is a way to remove the blurry effect when the game is paused. All so I can change around background pictures with events.
  2. yanfly's menu plugin can disable that.
  3. If you don't want to or are not using Yanfly's plugin as the above suggested you can do a simple edit to fix it.


    Open your js folder and then open the 'rpg_managers.js' file and search for this:


    SceneManager.snapForBackground = function() {
    this._backgroundBitmap = this.snap();
    this._backgroundBitmap.blur();
    };


    and edit out the line kinda like this:


    SceneManager.snapForBackground = function() {
    this._backgroundBitmap = this.snap();
    //this._backgroundBitmap.blur(); // EDIT
    };


    simple enough and I haven't had any problems out of it in my game. :D
  4. @Snowcone
    Wee bit of a necro here, but sure! If you want to credit me for a small fix then go for it. :D
    Makes me happy that some of my old fixes are still assisting people!