HomeSort by relevance Sort by last modified time
    Searched refs:tilesets (Results 1 - 5 of 5) sorted by null

  /external/libgdx/gdx/src/com/badlogic/gdx/maps/tiled/
TiledMapTileSets.java 26 private Array<TiledMapTileSet> tilesets; field in class:TiledMapTileSets
28 /** Creates an empty collection of tilesets. */
30 tilesets = new Array<TiledMapTileSet>();
36 return tilesets.get(index);
42 for (TiledMapTileSet tileset : tilesets) {
52 tilesets.add(tileset);
59 tilesets.removeIndex(index);
64 tilesets.removeValue(tileset, true);
72 // is that the tilesets are in order of ascending firstgid, and by backward
73 // iterating precedence for conflicts is given to later tilesets in the list,
    [all...]
TiledMap.java 25 /** @brief Represents a tiled map, adds the concept of tiles and tilesets.
29 private TiledMapTileSets tilesets; field in class:TiledMap
32 /** @return collection of tilesets for this map. */
34 return tilesets;
39 tilesets = new TiledMapTileSets();
TideMapLoader.java 124 /** Loads the tilesets
170 TiledMapTileSets tilesets = map.getTileSets(); local
172 for (TiledMapTileSet tileset : tilesets) {
197 tilesets.addTileSet(tileset);
223 TiledMapTileSets tilesets = map.getTileSets(); local
235 currentTileSet = tilesets.getTileSet(currentChild.getAttribute("Ref"));
252 currentTileSet = tilesets.getTileSet(frame.getAttribute("Ref"));
BaseTmxMapLoader.java 84 TiledMapTileSets tilesets = map.getTileSets(); local
92 TiledMapTile tile = tilesets.getTile(id & ~MASK_CLEAR);
TmxMapLoader.java 204 Array<Element> tilesets = root.getChildrenByName("tileset"); local
205 for (Element element : tilesets) {
224 /** Loads the tilesets
309 * @param map the Map whose tilesets collection will be populated

Completed in 273 milliseconds