- Joined
- Nov 13, 2016
- Messages
- 5
- Reaction score
- 3
- First Language
- English
- Primarily Uses
- RMMV
RPG Maker Tile Resizer
v1.0.0
Introduction
Hey everyone!
This is not a plugin but a small JS script that scales all your 32pixel/tile images to 48px/tile scaled versions.
Features
If you use this fantastic plugin: http://forums.rpgmakerweb.com/index.php?/topic/46748-change-tile-size/
You can use the 32 pixel tilesets in RPG Maker MV, but the editor needs 48 pixel versions of the tilesets to display them properly.
This small script search all your 32px tilesets and resize them to 48px versions.
You don't need to create the resize manually with GIMP or Photoshop anymore, or commit these larger but same images to your game's version control sofware, which are take up a lot of spaces.
Other resizer scripts require Visual Studio C++ build tools and Windows SDK on windows (8G
, or libvps on Linux.
But I made this script for lightweight, easy to use and to work cross-platform.
Because the script is full of JavaScript the only requirement is Node.js it is little slower than native solutions but works well without any heavy external dependency.
How to use?
npm install
What this script does?
Download
Credit
MIT License, free to use and modify for commercial and non-commercial games
v1.0.0
Introduction
Hey everyone!
This is not a plugin but a small JS script that scales all your 32pixel/tile images to 48px/tile scaled versions.
Features
If you use this fantastic plugin: http://forums.rpgmakerweb.com/index.php?/topic/46748-change-tile-size/
You can use the 32 pixel tilesets in RPG Maker MV, but the editor needs 48 pixel versions of the tilesets to display them properly.
This small script search all your 32px tilesets and resize them to 48px versions.
You don't need to create the resize manually with GIMP or Photoshop anymore, or commit these larger but same images to your game's version control sofware, which are take up a lot of spaces.
Other resizer scripts require Visual Studio C++ build tools and Windows SDK on windows (8G
But I made this script for lightweight, easy to use and to work cross-platform.
Because the script is full of JavaScript the only requirement is Node.js it is little slower than native solutions but works well without any heavy external dependency.
How to use?
- Download and install the latest Node.js (this contains npm): https://nodejs.org/en/download/
- Copy the downloaded zip file contents into your RPG Maker MV Game project folder [resizer.js, package.json, .gitignore]
- Open up a command line and cd into your Game directory
- Install the required dependencies:
npm install
- Use this script to resize your tilesets
Code:
node resizer.js
What this script does?
- This script scales the images by 1.5 percent to create 48px/tile version images from 32px/tile images
- This script will check only your Game project's [img\tilesets32, img\parallaxes32] folders
- It will make a resized copy of every image found and move the new images to: [img\tilesets, img\parallaxes]
Download
Credit
MIT License, free to use and modify for commercial and non-commercial games
Last edited:

