Merge pull request #217 from fr3qu3ncy-dev/main

Disable drop shadow for pipe frames
This commit is contained in:
Ell 2024-11-08 14:19:10 +01:00 committed by GitHub
commit 955299f3f1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -31,7 +31,7 @@ public class PipeFrameRenderer extends ItemFrameRenderer<PipeFrameEntity> {
var matrix4f = matrixStackIn.last().pose();
matrixStackIn.translate(0, 0.285F, 0.415F);
matrixStackIn.scale(-0.02F, -0.02F, 0.02F);
font.drawInBatch(amountStrg, x, 0, 0xFFFFFF, true, matrix4f, bufferIn, Font.DisplayMode.NORMAL, 0, packedLightIn);
font.drawInBatch(amountStrg, x, 0, 0xFFFFFF, false, matrix4f, bufferIn, Font.DisplayMode.NORMAL, 0, packedLightIn);
matrixStackIn.popPose();
}