From 26f44e7c1561886e8407f472d26b3a7c515cc3ce Mon Sep 17 00:00:00 2001 From: drewcassidy Date: Tue, 9 Jun 2020 00:03:00 -0700 Subject: [PATCH] Remove some more debug statements --- .../GameData/ConformalDecals/Plugins/ConformalDecals.dll | 4 ++-- Source/ConformalDecals/DecalIconFixer.cs | 1 - Source/ConformalDecals/ModuleConformalDecal.cs | 5 ----- 3 files changed, 2 insertions(+), 8 deletions(-) diff --git a/Distribution/GameData/ConformalDecals/Plugins/ConformalDecals.dll b/Distribution/GameData/ConformalDecals/Plugins/ConformalDecals.dll index 725bfe2..049113c 100644 --- a/Distribution/GameData/ConformalDecals/Plugins/ConformalDecals.dll +++ b/Distribution/GameData/ConformalDecals/Plugins/ConformalDecals.dll @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:615f4d0433efc28fd30e7e24ade023a8eab802c1ba29bd48c4a2b963fb9c7e4b -size 35840 +oid sha256:143945aeb89bfa4899ca3aa81544026a16315edf746c8fbf8b719b3a7cc86378 +size 36352 diff --git a/Source/ConformalDecals/DecalIconFixer.cs b/Source/ConformalDecals/DecalIconFixer.cs index d0f9b8a..491a95f 100644 --- a/Source/ConformalDecals/DecalIconFixer.cs +++ b/Source/ConformalDecals/DecalIconFixer.cs @@ -43,7 +43,6 @@ namespace ConformalDecals { var size = new Vector2(decalModule.scale, decalModule.scale * aspectRatio); backScale.x = size.x * decalModule.backTextureBaseScale.x; backScale.y = size.y * decalModule.backTextureBaseScale.y; - Debug.Log($"backscale is {backScale}"); } backTransform.GetComponent().material = decalModule.backMaterial; diff --git a/Source/ConformalDecals/ModuleConformalDecal.cs b/Source/ConformalDecals/ModuleConformalDecal.cs index 0ecffe0..0acaba4 100644 --- a/Source/ConformalDecals/ModuleConformalDecal.cs +++ b/Source/ConformalDecals/ModuleConformalDecal.cs @@ -228,11 +228,6 @@ namespace ConformalDecals { } // handle texture tiling parameters - - this.Log($"TileRect {tileRect}"); - this.Log($"TileSize {tileSize}"); - this.Log($"TileIndex {tileIndex}"); - if (tileRect.x >= 0) { materialProperties.UpdateTile(tileRect); }