diff --git a/RemoteParticipant.cs b/RemoteParticipant.cs index 15415a7..67d8b13 100644 --- a/RemoteParticipant.cs +++ b/RemoteParticipant.cs @@ -27,7 +27,7 @@ namespace Passer.Control.Core { } public void Add(Thing thing, bool invokeEvent = true) { - Console.WriteLine($"added thing [{thing.networkId}/{thing.id}]"); + // Console.WriteLine($"added thing [{thing.networkId}/{thing.id}]"); Thing foundThing = Get(thing.networkId, thing.id); if (foundThing == null) { @@ -41,7 +41,7 @@ namespace Passer.Control.Core { // should be: find first non-existing id... thing.id = (byte)this.things.Count; things.Add(thing); - Console.Write($"Add thing, updated thing id to [{thing.networkId}/{thing.id}]"); + // Console.Write($"Add thing, updated thing id to [{thing.networkId}/{thing.id}]"); } } } diff --git a/Unity/DistanceSensor.cs b/Unity/DistanceSensor.cs index 6dc1fdf..ac74b78 100644 --- a/Unity/DistanceSensor.cs +++ b/Unity/DistanceSensor.cs @@ -32,7 +32,7 @@ namespace Passer.Control.Unity { if (Physics.Raycast(this.transform.position, this.transform.forward, out RaycastHit hitInfo, 2.0f)) { Thing thing = hitInfo.transform.GetComponentInParent(); if (thing == null) { - Debug.Log($"collision {hitInfo.transform.name} {hitInfo.distance}"); + // Debug.Log($"collision {hitInfo.transform.name} {hitInfo.distance}"); core.distance = hitInfo.distance; } else