wa-map-optimizer
v1.4.8
Published
WorkAdventure Map Optimizer! Does your map need a diet?
Downloads
1,061
Readme
WorkAdventure Map Optimizer! Does your map need a diet?
Requirements
- Node 16.15 <
- Yarn 1.22 <
Install
yarn add wa-map-optimizer
Usage
import { optimize } from "wa-map-optimizer";
async function run() {
await optimize("./example/map.json");
console.log("Optimization finished");
}
run();
Advanced usage
import { optimize } from "wa-map-optimizer";
async function run() {
await optimize("./example/map.json", {
tile: {
size: 32,
},
logs: true,
output: {
path: "optimisation/new_map",
map: {
name: "awesome-map",
},
tileset: {
prefix: "optimized",
suffix: "tileset",
size: 1024,
}
}
});
console.log("Optimization finished");
}
run();
Author
👤 Nolway (Alexis Faizeau)
- Website: alexis-faizeau.com
- Github: @Nolway
- LinkedIn: @alexis-faizeau
Show your support
Give a ⭐️ if this project helped you!
📝 License
Copyright © 2022 Nolway(Alexis Faizeau). This project is AGPL--3.0 licensed.