List of usage examples for com.badlogic.gdx.maps.tiled AtlasTmxMapLoader AtlasTmxMapLoader
public AtlasTmxMapLoader()
From source file:com.esotericsoftware.spine.superspineboy.Model.java
License:Open Source License
Model(SuperSpineboy controller) {
this.controller = controller;
map = new AtlasTmxMapLoader().load("map/map.tmx");
collisionLayer = (TiledMapTileLayer) map.getLayers().get(mapCollisionLayer);
restart();//from w ww .j a v a 2 s . c om
}