Merge pull request #129 from flame-engine/tiled-docs

Adding tiled docs
This commit is contained in:
Luan Nico
2019-07-12 10:07:13 -03:00
committed by GitHub
2 changed files with 8 additions and 0 deletions

View File

@ -12,6 +12,7 @@ This is the index of the documentation for Flame, updated to version `0.8.3`.
* [Components](components.md)
* [The Game Loop](game.md)
* [Input](input.md)
* [Tiled](tiled.md)
* [Util](util.md)
* [Box2d](box2d.md)
* [Debug](debug.md)

7
doc/tiled.md Normal file
View File

@ -0,0 +1,7 @@
# Tiled
[Tiled](https://www.mapeditor.org/) is an awesome tool to design level and maps. Flame bundles a [dart package](https://pub.dev/packages/tiled) that parses tmx files and implements a very simple component for the map renderization.
Right now Tiled support on Flame is quite simple and it only renders the map on the screen, other advanced features are not yet supported.
You can check a working example [here](examples/tiled).