Skip to main content

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

Is there a way to reduce the size of the map name window its just a little to large. 

Yes, to do that, follow this procedure:

  • Open MK_Minimap in the Plugin Manager and go to "Map Name Window"
  • In Position&Sizes, go to the last line and replace it with
return new Rectangle(x, y, width, 0.8 * height);
  • In "Content", replace everything with:
const text = arguments[0];
const align = arguments[1];
this.makeFontSmaller();
this.drawText(
  text,
  0,
  -6,
  this.contentsWidth(),
  align,
);

You can play around with the 0.8 and the -6 values for further finetuning.

That made the window smaller, but the font is the same size is there a way to make that smaller too

this.makeFontSmaller() should decrease the font size as I already showed in my previous post. If that doesn't work, you can try to replace this line with

this.contents.fontSize = 8

or any other number. If that STILL doesn't work, you can also try googling or asking in the community because both makeFontSmaller and font size are RPG Maker's functions and not specifically for this plugin.