This commit is contained in:
Anuken
2019-01-04 15:11:58 -05:00
parent 5019f200b7
commit 0900c13fa1
4 changed files with 4 additions and 49 deletions

View File

@@ -113,6 +113,10 @@ public class FloorRenderer{
cbatch.endDraw();
}
public void updateFloor(Tile tile){
//TODO: implement
}
public void drawLayer(CacheLayer layer){
if(cache == null){
return;
@@ -181,8 +185,6 @@ public class FloorRenderer{
if(floor.cacheLayer == layer){
floor.draw(tile);
}else if(floor.cacheLayer.ordinal() < layer.ordinal()){
//floor.drawNonLayer(tile);
}
}
}