tiled-crystal

Version, currently main branch1 version
  • main branchlatestJan 9, 2026

github.com/Crystal2Day/tiled-crystal

Wrapper methods for the Tiled editor

1 stars
1 dependent
License: MIT

Installation

# Add this to your shard.yml
dependencies:
  tiled-crystal:
    github: Crystal2Day/tiled-crystal
    branch: main

main is a branch, not a release, so this tracks it rather than pinning a version.

Then run:

shards install

shard.yml

Crystal
>= 1.12.1
License
MIT
Author
Hadeweka

Dependencies

This version declares no dependencies.

README

# tiled-crystal

This Crystal shard allows parsing map files from Tiled (https://www.mapeditor.org/) into Crystal structures.

To run it, just include it into your project (it has no dependencies beyond the Crystal standard library)
and call the following functions (with the paths to the respective files):

```crystal
tileset = Tiled.parse_tileset_from_file("ExampleTileset.tsx")

map = Tiled.parse_map_from_file("ExampleMap.tmx")
```