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

  /external/libgdx/gdx/src/com/badlogic/gdx/maps/tiled/
TiledMapTileSet.java 23 /** @brief Set of {@link TiledMapTile} instances used to compose a TiledMapLayer */
24 public class TiledMapTileSet implements Iterable<TiledMapTile> {
28 private IntMap<TiledMapTile> tiles;
49 tiles = new IntMap<TiledMapTile>();
53 /** Gets the {@link TiledMapTile} that has the given id.
55 * @param id the id of the {@link TiledMapTile} to retrieve.
57 public TiledMapTile getTile (int id) {
63 public Iterator<TiledMapTile> iterator () {
69 * @param id the id of the {@link TiledMapTile} to add or replace.
70 * @param tile the {@link TiledMapTile} to add or replace. *
    [all...]
TiledMapTile.java 23 public interface TiledMapTile {
TiledMapTileLayer.java 87 /** @brief represents a cell in a TiledLayer: TiledMapTile, flip and rotation properties. */
90 private TiledMapTile tile;
99 public TiledMapTile getTile () {
105 * @param tile the {@link TiledMapTile} to use for this cell.
107 public Cell setTile (TiledMapTile tile) {
TiledMapTileSets.java 67 /** @param id id of the {@link TiledMapTile} to get.
69 public TiledMapTile getTile (int id) {
78 TiledMapTile tile = tileset.getTile(id);
TmxMapLoader.java 392 TiledMapTile tile = new StaticTiledMapTile(tileRegion);
410 TiledMapTile tile = new StaticTiledMapTile(texture);
423 TiledMapTile tile = tileset.getTile(firstgid + localtid);
AtlasTmxMapLoader.java 388 TiledMapTile tile = tileset.getTile(tileid);
426 TiledMapTile tile = tileset.getTile(firstgid + localtid);
BaseTmxMapLoader.java 92 TiledMapTile tile = tilesets.getTile(id & ~MASK_CLEAR);
216 TiledMapTile tile = map.getTileSets().getTile(id & ~MASK_CLEAR);
TideMapLoader.java 186 TiledMapTile tile = new StaticTiledMapTile(new TextureRegion(texture, x, y, tileSizeX, tileSizeY));
  /external/libgdx/gdx/src/com/badlogic/gdx/maps/tiled/objects/
TiledMapTileMapObject.java 22 import com.badlogic.gdx.maps.tiled.TiledMapTile;
26 /** A {@link MapObject} with a {@link TiledMapTile}. Can be both {@link StaticTiledMapTile} or {@link AnimatedTiledMapTile}. For
27 * compatibility reasons, this extends {@link TextureMapObject}. Use {@link TiledMapTile#getTextureRegion()} instead of
35 private TiledMapTile tile;
37 public TiledMapTileMapObject (TiledMapTile tile, boolean flipHorizontally, boolean flipVertically) {
63 public TiledMapTile getTile () {
67 public void setTile (TiledMapTile tile) {
  /external/libgdx/gdx/src/com/badlogic/gdx/maps/tiled/tiles/
StaticTiledMapTile.java 21 import com.badlogic.gdx.maps.tiled.TiledMapTile;
23 /** @brief Represents a non changing {@link TiledMapTile} (can be cached) */
24 public class StaticTiledMapTile implements TiledMapTile {
AnimatedTiledMapTile.java 21 import com.badlogic.gdx.maps.tiled.TiledMapTile;
27 /** @brief Represents a changing {@link TiledMapTile}. */
28 public class AnimatedTiledMapTile implements TiledMapTile {
78 public TiledMapTile getCurrentFrame () {
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
HexagonalTiledMapTest.java 26 import com.badlogic.gdx.maps.tiled.TiledMapTile;
58 TiledMapTile[] tiles = new TiledMapTile[3];
  /external/libgdx/gdx/src/com/badlogic/gdx/maps/tiled/renderers/
IsometricStaggeredTiledMapRenderer.java 25 import com.badlogic.gdx.maps.tiled.TiledMapTile;
73 final TiledMapTile tile = cell.getTile();
HexagonalTiledMapRenderer.java 25 import com.badlogic.gdx.maps.tiled.TiledMapTile;
171 final TiledMapTile tile = cell.getTile();
IsometricTiledMapRenderer.java 25 import com.badlogic.gdx.maps.tiled.TiledMapTile;
118 final TiledMapTile tile = cell.getTile();
OrthogonalTiledMapRenderer.java 44 import com.badlogic.gdx.maps.tiled.TiledMapTile;
95 final TiledMapTile tile = cell.getTile();
OrthoCachedTiledMapRenderer.java 34 import com.badlogic.gdx.maps.tiled.TiledMapTile;
237 final TiledMapTile tile = cell.getTile();
  /external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tiledmappacker/
TiledMapPacker.java 50 import com.badlogic.gdx.maps.tiled.TiledMapTile;
230 TiledMapTile tile = tlayer.getCell(x, y).getTile();
246 private void addTile (TiledMapTile tile, int bucketSize) {

Completed in 113 milliseconds