pytiled_parser
pytiled_parser copied to clipboard
Python Library for parsing Tiled Map Editor maps.
In order for type-checkers to know that this package is type-annotated, it needs to include a `py.typed` marker file, as outlined in [PEP 561](https://peps.python.org/pep-0561/#packaging-type-information). Is there a reason this is...
Very simple change, because Tiled use black, not white, when no color is set for a text.
A very very small amount of work has been done on adding a programming guide to the docs. This should cover the general intended use of pytiled-parser, loading a map,...
API Docs
Docs are currently being re-worked and using mkdocs. The autogenerated API docs are also being re-done as part of this. Currently the docstrings themselves are about half way to being...
In Tiled 1.8 the ability to create custom property types was added, this feature was further expanded on in the Tiled 1.9 update. You can read more about the feature...
Currently we are only capable of accepting a file path to parse the map. Instead we should add the ability to pass an already parsed JSON, or a raw JSON...
As part of the documentation re-work some examples could be useful. We don’t really need an example for Arcade since it has its own wrapper, but it should be easy...
As reported in https://github.com/pythonarcade/arcade/issues/955 when an infinite map is loaded, the data is stored differently using chunks as opposed to the normal `data` array you would see in a finite...
A big part of the re-work for 2.0 was separating parsing from the API definition. This is what enabled support for TMX to come in 2.0, but also was the...
On Tiled version 1.11.0 (and earlier), string properties spanning multiple lines are supported. Next to the property's value, a "..." button appears which opens a multiline textbox where these strings...