Searched refs:mTileHeight (Results 1 - 3 of 3) sorted by relevance

/external/replicaisland/src/com/replica/replicaisland/
H A DLevelSystem.java32 public int mTileHeight; field in class:LevelSystem
67 return mHeightInTiles * mTileHeight;
112 mTileHeight = 32;
141 mHeightInTiles * mTileHeight);
148 mTileWidth, mTileHeight, world, tileIndex);
162 collision.initialize(world, mTileWidth, mTileHeight);
193 factory.spawnFromWorld(mSpawnLocations, mTileWidth, mTileHeight);
H A DTiledVertexGrid.java26 private int mTileHeight; field in class:TiledVertexGrid
43 mTileHeight = tileHeight;
61 final int tileHeight = mTileHeight;
138 mWorldPixelHeight = mWorld.getHeight() * mTileHeight;
183 final int verticalSlop = ((tileSpaceY - bottomTile) * mTileHeight) > 0 ? 1 : 0;
190 final int vertTileCount = (int)Math.ceil((float)mHeight / mTileHeight);
H A DCollisionSystem.java46 private int mTileHeight; field in class:CollisionSystem
90 mTileHeight = tileHeight;
114 mTileSegmentTester.setup(movementDirection, mTileWidth, mTileHeight);
180 final int startTileY = Utils.clamp((int)(startY / mTileHeight), 0, mWorld.getHeight() - 1);
181 final int endTileY = Utils.clamp((int)(endY / mTileHeight), 0, mWorld.getHeight() - 1);
197 final float yOffset = y * mTileHeight;
424 return Utils.clamp((int)Math.floor(y / mTileHeight), 0, height - 1);
616 private int mTileHeight; field in class:CollisionSystem.TileTestVisitor
639 mTileHeight = tileHeight;
649 mTileSpaceOffset.set(tileX * mTileWidth, tileY * mTileHeight);
[all...]

Completed in 163 milliseconds