-rename BuildingOverlay -> ExtrusionOverlay,

even if there is probably nothing else to extrude
- started to draw extrusion layer for proxy tiles
- fixed depth offsetting..
This commit is contained in:
Hannes Janetzek
2013-01-05 02:46:27 +01:00
parent 0c023f9989
commit 99ce02a9bd
6 changed files with 400 additions and 386 deletions

View File

@@ -52,7 +52,7 @@ public final class MapTile extends JobTile {
/**
* pointer to access relatives in QuadTree
*/
QuadTree rel;
public QuadTree rel;
int lastDraw = 0;
@@ -65,7 +65,7 @@ public final class MapTile extends JobTile {
final static int PROXY_GRAMPA = 1 << 5;
final static int PROXY_HOLDER = 1 << 6;
byte proxies;
public byte proxies;
// counting the tiles that use this tile as proxy
byte refs;
@@ -94,9 +94,6 @@ public final class MapTile extends JobTile {
if (locked > 1)
return;
//if (isReady || newData)
// return;
MapTile p = rel.parent.tile;
if (p != null && (p.state != 0)) {