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;