From f5ed87f9e9409ba0b2b8b9bd86adf0bf3715d1d1 Mon Sep 17 00:00:00 2001 From: Pascal Serrarens Date: Mon, 9 Feb 2026 11:49:58 +0100 Subject: [PATCH] home & food pheromones --- Editor/ClusterInspector.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Editor/ClusterInspector.cs b/Editor/ClusterInspector.cs index 436861e..0e3f10c 100644 --- a/Editor/ClusterInspector.cs +++ b/Editor/ClusterInspector.cs @@ -124,7 +124,7 @@ public class ClusterInspector : Editor { } void OnAddClusterOutput() { - Nucleus newOutput = new Neuron(this.cluster, "Output 2"); + Nucleus newOutput = new Neuron(this.cluster, "New Output"); outputsField.choices = this.cluster.outputs.Select(output => output.name).ToList(); outputsField.value = newOutput.name;