https://github.com/othelarian/tile_creator
https://github.com/othelarian/tile_creator
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/othelarian/tile_creator
- Owner: othelarian
- Created: 2024-04-30T19:26:35.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-05-02T22:20:32.000Z (about 1 year ago)
- Last Synced: 2025-01-12T08:34:37.733Z (5 months ago)
- Language: Pug
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Tile Creator
to install & use:
```shell
# to install you need node
npm i
# to use you have to call live with the generate command
live generate -d name-of-the-file
# for example, to generate the prototype map
live generate -d prototype
```The file must be in data, and wrote in LiveScript (don't add the extension).
All the generated maps goes into the `maps` directory, as a svg file
(named `name-of-the-file.svg`).If you want to also export as png then add `i` option:
```shell
live generate -id name-of-the-file
# or
live generate -i -d name-of-the-file
```