A Dart Tiled library.
Include the following in your pubspec.yaml:
dependencies:
tiled: 0.4.0Import 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);TMX support is work of @radicaled and we have got his code from tmx.dart lib.