ldtk2 0.1.1

A thin crate for people who just want to use ldtk files freely.
Documentation

Workflow Status

ldtk2

A thin crate for people who just want to use ldtk files freely.

Usage

  use ldtk2::Ldtk;

  let map = Ldtk::from_file("example.ldtk")?;
  // or
  let map = Ldtk::from_str(include_str!("example.ldtk"))?;

Why did I create this nonsense?

  • LDtk-rs uses code generation, it does not get autocomplete support from rust-analyzer. Also, there are special license restrictions on using that crate.
  • ldtk_rust uses .except() inside the crate, you can't handle the error.

License: Apache-2.0