Closed Wyn-Price closed 2 years ago
Block Entities also do not render
Issue arises from the cutoff alpha value for cutout
being 0.1, and cutout_mipped
being 0.5.
We pass a value of 0.5, meaning the fragment gets discarded only on cutout_mipped
https://github.com/TerraformersMC/Campanion/blob/22856268935c64a53e8aca77e90d34f84b2c3435/src/main/java/com/terraformersmc/campanion/client/util/TentPreviewBufferBuilder.java#L16-L21
We should not be calling these shaders to render translucent objects anyway. A simple fix for this would be to force a RenderType of translucent
Nice find, I'll get on that and removing that mixin now!