First pass at trying to make a CPU render - is basically a multiblock heat vent at this point.

This commit is contained in:
AlgorithmX2
2014-05-15 09:34:38 -05:00
parent 322b0a7da7
commit cfeebae5ac
6 changed files with 328 additions and 26 deletions
@@ -665,7 +665,10 @@ public class RenderBlocksWorkaround extends RenderBlocks
for (int i = -1; i <= 1; i++)
for (int j = -1; j <= 1; j++)
for (int k = -1; k <= 1; k++)
{
lightHashTmp[o++] = blk.getMixedBrightnessForBlock( this.blockAccess, x + i, y + j, z + k );
}
return Arrays.hashCode( lightHashTmp );
}