Rename and move LodConfig to LodConfigHandler

This commit is contained in:
James Seibel
2021-06-17 20:51:13 -05:00
parent 799b0e2481
commit a28da86d44
10 changed files with 68 additions and 65 deletions
@@ -4,11 +4,11 @@ import java.util.concurrent.Executors;
import org.lwjgl.opengl.GL11;
import com.seibel.lod.handlers.LodConfigHandler;
import com.seibel.lod.objects.LodChunk;
import com.seibel.lod.objects.LodDimension;
import com.seibel.lod.objects.NearFarBuffer;
import com.seibel.lod.render.LodRender;
import com.seibel.lod.util.LodConfig;
import com.seibel.lod.util.LodUtils;
import net.minecraft.client.Minecraft;
@@ -191,7 +191,7 @@ public class LodBufferBuilder
// get the desired LodTemplate and
// add this LOD to the buffer
LodConfig.CLIENT.lodTemplate.get().
LodConfigHandler.CLIENT.lodTemplate.get().
template.addLodToBuffer(currentBuffer, lodDim, lod,
xOffset, yOffset, zOffset, renderer.debugging);
}