From 9fe26b29486f7253afe46c4daee25342bf7fc479 Mon Sep 17 00:00:00 2001 From: Simon Rodriguez Date: Wed, 3 Oct 2018 22:20:26 +0200 Subject: [PATCH] missing assignments in OutputAttribute and InputAttribute --- Scripts/Node.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Scripts/Node.cs b/Scripts/Node.cs index 5179c32..ac62fd6 100644 --- a/Scripts/Node.cs +++ b/Scripts/Node.cs @@ -220,6 +220,7 @@ namespace XNode { public InputAttribute(ShowBackingValue backingValue = ShowBackingValue.Unconnected, ConnectionType connectionType = ConnectionType.Multiple, bool instancePortList = false) { this.backingValue = backingValue; this.connectionType = connectionType; + this.instancePortList = instancePortList; } } @@ -236,6 +237,7 @@ namespace XNode { public OutputAttribute(ShowBackingValue backingValue = ShowBackingValue.Never, ConnectionType connectionType = ConnectionType.Multiple, bool instancePortList = false) { this.backingValue = backingValue; this.connectionType = connectionType; + this.instancePortList = instancePortList; } }