28 releases
0.11.0 | Mar 16, 2023 |
---|---|
0.10.2 | Apr 26, 2022 |
0.10.1 | Mar 14, 2022 |
0.9.5 |
|
0.1.1 | Nov 21, 2014 |
#62 in Game dev
1,162 downloads per month
Used in 5 crates
140KB
3K
SLoC
rs-tiled
tiled = "0.11.0"
A crate for reading TMX (map) and TSX (tileset) files from the Tiled Map Editor into Rust. It provides a huge set of features as well as a strong wrapper over internal features such as GIDs.
Documentation is available on docs.rs.
Code contributions are welcome as are bug reports, documentation, suggestions and criticism.
The minimum supported TMX version is 0.13.
Example
use tiled::Loader;
fn main() {
let mut loader = Loader::new();
let map = loader.load_tmx_map("assets/tiled_base64_zlib.tmx").unwrap();
println!("{:?}", map);
println!("{:?}", map.tilesets()[0].get_tile(0).unwrap().probability);
let tileset = loader.load_tsx_tileset("assets/tilesheet.tsx").unwrap();
assert_eq!(*map.tilesets()[0], tileset);
}
Licences
assets/tilesheet.png by Buch
Licenced under MIT
Dependencies
~4MB
~65K SLoC