Down to less than 100 errors

This commit is contained in:
Anuken
2020-03-06 14:55:06 -05:00
parent 73c0ebb75f
commit 4358658889
16 changed files with 64 additions and 58 deletions

View File

@@ -186,18 +186,18 @@ public class MenuRenderer implements Disposable{
batch.beginCache();
for(Tile tile : world.tiles){
tile.floor().draw(tile);
tile.floor().drawBase(tile);
}
for(Tile tile : world.tiles){
tile.overlay().draw(tile);
tile.overlay().drawBase(tile);
}
cacheFloor = batch.endCache();
batch.beginCache();
for(Tile tile : world.tiles){
tile.block().draw(tile);
tile.block().drawBase(tile);
}
cacheWall = batch.endCache();