diff --git a/GameData/ConformalDecals/Plugins/ConformalDecals.dll b/GameData/ConformalDecals/Plugins/ConformalDecals.dll index cb5e89a..9987c53 100644 Binary files a/GameData/ConformalDecals/Plugins/ConformalDecals.dll and b/GameData/ConformalDecals/Plugins/ConformalDecals.dll differ diff --git a/Source/ConformalDecals/ModuleConformalDecal.cs b/Source/ConformalDecals/ModuleConformalDecal.cs index dd32816..05fa3ff 100644 --- a/Source/ConformalDecals/ModuleConformalDecal.cs +++ b/Source/ConformalDecals/ModuleConformalDecal.cs @@ -645,8 +645,6 @@ namespace ConformalDecals { protected void UpdatePartTarget(Part targetPart, Bounds projectionBounds) { if (targetPart.GetComponent() != null) return; // skip other decals - this.Log($"Updating projection onto part {targetPart.name}"); - if (!_targets.TryGetValue(targetPart, out var target)) { var rendererList = targetPart.FindModelComponents(); @@ -659,8 +657,6 @@ namespace ConformalDecals { } } - this.Log($"valid target: {targetPart.name}"); - target.Project(_orthoMatrix, decalProjectorTransform, projectionBounds); }