temporarily disable transparency in the AbstractLodTemplate

This commit is contained in:
James Seibel
2021-10-03 14:08:55 -05:00
parent a0358dd298
commit 1e819bd555
@@ -50,7 +50,8 @@ public abstract class AbstractLodTemplate
double x, double y, double z,
int color)
{
buffer.vertex(x, y, z).color(ColorUtil.getRed(color), ColorUtil.getGreen(color), ColorUtil.getBlue(color), ColorUtil.getAlpha(color)).endVertex();
// TODO re-add transparency by replacing the 255 with "ColorUtil.getAlpha(color)"
buffer.vertex(x, y, z).color(ColorUtil.getRed(color), ColorUtil.getGreen(color), ColorUtil.getBlue(color), 255).endVertex();
}
/**