Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

This is a really wonderful plugin! The inclusion of that editor is A+ effort and makes it so much more effective than others I've tried. I saw you're working on making versions of this for other menus, and I can't wait to see them after using this one.

I think the only thing I would love to have right now that I don't: a way to make the option which sets the number of columns to be the same as the number of actors in party also adjust the width of the actor window. I'm using the override window size options, so I would need a way to make it a static value that it adds/removes width by. My game mostly only has 2 party members, but you occasionally get a third, so I would love to be able to get rid of that extra unused space most of the time.

(+1)

Hi, thanks for your suggestion.

Well, I'm uncertain whether I can include such a feature in my code. You would probably be better off adding another plugin that overrides what this plugin is doing. This plugin can have any name and needs to be put below the customizer plugin.

This is the code, assuming you are using MZ.

Scene_Menu.prototype.statusWindowRect = function() {
  return new Rectangle(
    0, // x value
    0, // y value
    400 * $gameParty.members().length, // replace 400 with any number
    Graphics.boxHeight - 50, // height
  );
}

Thanks so much for the reply and the code! I appreciate it. :)