When I recently tried to load a basic map I made in Tiled I get the exception: Unsupported encoding (XML) for TMX Layer Data
I looked at the tutorial from badlogicgames website and did the same thing
private TiledMap map;
public void create() {
map = new TmxMapLoader().load("data/jf2.tmx");
}
Here I have put my jf2.tmx file in the assets folder. I then moved all the images files to the same directory. So basically...what am I doing wrong?