https://github.com/hazeliscoding/tiled-to-ascii
Convert Tiled Maps/Tiles (JSON) to ASCII representation.
https://github.com/hazeliscoding/tiled-to-ascii
Last synced: 11 months ago
JSON representation
Convert Tiled Maps/Tiles (JSON) to ASCII representation.
- Host: GitHub
- URL: https://github.com/hazeliscoding/tiled-to-ascii
- Owner: hazeliscoding
- Created: 2021-02-11T01:13:16.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-02-11T01:33:24.000Z (about 5 years ago)
- Last Synced: 2025-03-15T06:52:13.428Z (12 months ago)
- Language: JavaScript
- Homepage: https://segfault0x61.github.io/tiled-to-ascii/
- Size: 3.91 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Tiled To ASCII
Convert Tiled Maps/Tiles (JSON) to ASCII representation. This app is hosted on GitHub Pages and can be accessed [here](https://segfault0x61.github.io/tiled-to-ascii/).
## How To Use
* You need to set tile's type to a desired ASCII character (otherwise it will be considered as space).
* Export both map and tileset as JSON.
* Drop both JSON files on the file drop zone.
* Press "Generate ASCII Map".
After these steps you'll get an output like this (example for a 16x16 map):
```
?###############
??#####?##?#####
#############<##
###..###########
###.....##?#####
##.......#######
#........#######
#........#######
..........######
................
#...............
#.........######
#........#######
##......######<#
######..########
?###############
```