Example usage for com.badlogic.gdx.maps.tiled AtlasTmxMapLoader AtlasTmxMapLoader

List of usage examples for com.badlogic.gdx.maps.tiled AtlasTmxMapLoader AtlasTmxMapLoader

Introduction

In this page you can find the example usage for com.badlogic.gdx.maps.tiled AtlasTmxMapLoader AtlasTmxMapLoader.

Prototype

public AtlasTmxMapLoader() 

Source Link

Usage

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
}