From ac7403b8766b53152e47294d114c594d8cf6acc8 Mon Sep 17 00:00:00 2001 From: Thor Brigsted Date: Mon, 6 Jan 2020 09:12:58 +0100 Subject: [PATCH] Removed Allowmultiple from Output and Input attributes --- Scripts/Node.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Scripts/Node.cs b/Scripts/Node.cs index a07679a..28e389d 100644 --- a/Scripts/Node.cs +++ b/Scripts/Node.cs @@ -262,7 +262,7 @@ namespace XNode { #region Attributes /// Mark a serializable field as an input port. You can access this through - [AttributeUsage(AttributeTargets.Field, AllowMultiple = true)] + [AttributeUsage(AttributeTargets.Field)] public class InputAttribute : Attribute { public ShowBackingValue backingValue; public ConnectionType connectionType; @@ -285,7 +285,7 @@ namespace XNode { } /// Mark a serializable field as an output port. You can access this through - [AttributeUsage(AttributeTargets.Field, AllowMultiple = true)] + [AttributeUsage(AttributeTargets.Field)] public class OutputAttribute : Attribute { public ShowBackingValue backingValue; public ConnectionType connectionType;