remove print

This commit is contained in:
mcrcortex
2025-05-15 22:27:16 +10:00
parent 73f27b65b1
commit 9bc0f46be9

View File

@@ -96,8 +96,8 @@ public class TextureUtils {
//Shouldent be needed due to the compute bake copy //Shouldent be needed due to the compute bake copy
depthF *= 2; depthF *= 2;
if (depthF > 1.00001f) { if (depthF > 1.00001f) {//Basicly only happens when a model goes out of bounds (thing)
System.err.println("Warning: Depth greater than 1"); //System.err.println("Warning: Depth greater than 1");
depthF = 1.0f; depthF = 1.0f;
} }
return depthF; return depthF;