From 3538b7dcc0710bd848de97e738afe6a34cdba78b Mon Sep 17 00:00:00 2001 From: Pascal Serrarens Date: Thu, 16 Jan 2025 17:47:45 +0100 Subject: [PATCH] Performance is better, but score is lower (<1%) --- Thing.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Thing.cs b/Thing.cs index 8f1439d..e3d1b5d 100644 --- a/Thing.cs +++ b/Thing.cs @@ -1,3 +1,4 @@ +using System; using System.Collections.Generic; using Passer.LinearAlgebra; @@ -192,7 +193,8 @@ namespace Passer.Control.Core { public static event ThingHandler OnNewThing; public static void Add(Thing thing, bool invokeEvent = true) { - UnityEngine.Debug.Log("added thing"); + //UnityEngine.Debug.Log("added thing"); + Console.WriteLine("added thing"); Thing foundThing = Get(thing.networkId, thing.id); if (foundThing == null) {