How does one load .tmx files from Tiled into a SFML game?
Tell me more
×
Game Development Stack Exchange is a question and answer site for
professional and independent game developers. It's 100% free, no registration required.
|
|
In my opinion the tmx-parser is the most robust library available which I have been using, too. It even supports compression which is the default option in Tiled. |
||||
|
|
TMX is an xml-based format. You can parse it with any XML-parsing library to extract the level data and convert it into your internal format. |
|||
|
|