Comment out LodRenderSection neighbor collection

This commit is contained in:
James Seibel
2024-04-04 07:09:17 -05:00
parent 08f0f8ee17
commit 42675abef1
@@ -190,13 +190,13 @@ public class LodRenderSection implements IDebugRenderable, AutoCloseable
private ColumnRenderSource[] getAndCreateNeighborRenderSources()
{
ColumnRenderSource[] adjacentRenderSections = new ColumnRenderSource[EDhDirection.ADJ_DIRECTIONS.length];
for (EDhDirection direction : EDhDirection.ADJ_DIRECTIONS)
{
DhSectionPos adjPos = this.pos.getAdjacentPos(direction);
ColumnRenderSource renderSource = ADJACENT_RENDER_SOURCE_BY_POS.compute(adjPos, this::computeCachedRenderSource);
adjacentRenderSections[direction.ordinal() - 2] = renderSource;
}
//for (EDhDirection direction : EDhDirection.ADJ_DIRECTIONS)
//{
// DhSectionPos adjPos = this.pos.getAdjacentPos(direction);
//
// ColumnRenderSource renderSource = ADJACENT_RENDER_SOURCE_BY_POS.compute(adjPos, this::computeCachedRenderSource);
// adjacentRenderSections[direction.ordinal() - 2] = renderSource;
//}
return adjacentRenderSections;
}