From 9bc0f46be91e8943334fa219d7c37769daa886ab Mon Sep 17 00:00:00 2001 From: mcrcortex <18544518+MCRcortex@users.noreply.github.com> Date: Thu, 15 May 2025 22:27:16 +1000 Subject: [PATCH] remove print --- .../java/me/cortex/voxy/client/core/model/TextureUtils.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/me/cortex/voxy/client/core/model/TextureUtils.java b/src/main/java/me/cortex/voxy/client/core/model/TextureUtils.java index e7075ed9..b82aa1bc 100644 --- a/src/main/java/me/cortex/voxy/client/core/model/TextureUtils.java +++ b/src/main/java/me/cortex/voxy/client/core/model/TextureUtils.java @@ -96,8 +96,8 @@ public class TextureUtils { //Shouldent be needed due to the compute bake copy depthF *= 2; - if (depthF > 1.00001f) { - System.err.println("Warning: Depth greater than 1"); + if (depthF > 1.00001f) {//Basicly only happens when a model goes out of bounds (thing) + //System.err.println("Warning: Depth greater than 1"); depthF = 1.0f; } return depthF;