CubeRenderGroup - Remove debug logging

This commit is contained in:
miku-666
2024-01-19 18:54:07 +01:00
parent dfe9912e28
commit 5d77f2a91e

View File

@@ -71,9 +71,7 @@ namespace PckStudio.Rendering
{
CubeData.RefAction<Vector2> fixUV = (ref Vector2 uv) =>
{
Debug.Write($"Old: {uv}; ");
uv.X %= textureSize.Width;
Debug.WriteLine($"Old: {uv};");
};
cube.SetFaceUv(face, fixUV);
}