Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 439 Bytes

README.md

File metadata and controls

23 lines (17 loc) · 439 Bytes

TiledJsonReader

Reader of the Tiled file .json

Usage

To use this plugin, add tiledjsonreader as a dependency in your pubspec.yaml file.

flutter:
  assets:
    - assets/map.json
    - assets/tile_set.json
import 'package:tiledjsonreader/tiledjsonreader.dart';

TiledJsonReader tiled = TiledJsonReader('assets/map.json');
tiled.read().then((map) {
  print(map);
});