Skip to content

kickwaxapps/tiled.dart

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

90 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Tiled Dart

A Dart Tiled library.

Install from Dart Pub Repository

Include the following in your pubspec.yaml:

dependencies:
  tiled: any

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:

string tmxBody = /* ... */;
var parser = new TileMapParser();
TileMap map = parser.parse(tmxBody);

Credits

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

About

A Tiled Dart library

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dart 100.0%