tiled 0.4.0 copy "tiled: ^0.4.0" to clipboard
tiled: ^0.4.0 copied to clipboard

outdated

A Dart Tiled library. Parse your TMX files into useful representations. Compatible with Flame.

Tiled Dart #

Pub CI Discord

A Dart Tiled library.

Install from Dart Pub Repository #

Include the following in your pubspec.yaml:

    dependencies:
      tiled: 0.4.0

Usage #

Import the package like this:

    import 'package:tiled/tiled.dart'

Load a TMX file into a string by any means, and then pass the string to an instance of TileMapParser.parse:

    final String tmxBody = /* ... */;
    final TileMapParser parser = TileMapParser();
    final TileMap map = parser.parse(tmxBody);

Credits #

TMX support is work of @radicaled and we have got his code from tmx.dart lib.

29
likes
0
pub points
82%
popularity

Publisher

verified publisherflame-engine.org

A Dart Tiled library. Parse your TMX files into useful representations. Compatible with Flame.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

archive, xml

More

Packages that depend on tiled