Added recorder module

This commit is contained in:
Anuken
2019-01-27 12:31:14 -05:00
parent 5a9307e9a7
commit da9278ad8d
5 changed files with 6 additions and 4 deletions

View File

@@ -54,7 +54,7 @@ public class BlockRenderer{
Draw.proj().setOrtho(0, 0, fog.getWidth(), fog.getHeight());
//TODO highly inefficient, width*height rectangles isn't great
//TODO handle shadows with GPU
//TODO handle shadow rotation generation with GPU blur/erode algorithm
for(int x = 0; x < world.width(); x++){
for(int y = 0; y < world.height(); y++){
Tile tile = world.rawTile(x, y);