From d19ea40e383299c2f97afb9b8f1bbe0988272c61 Mon Sep 17 00:00:00 2001 From: Raistlin Wolfe Date: Mon, 12 Sep 2022 18:22:03 -0600 Subject: [PATCH] Update Node.cs --- Scripts/Node.cs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Scripts/Node.cs b/Scripts/Node.cs index 704e99d..b705627 100644 --- a/Scripts/Node.cs +++ b/Scripts/Node.cs @@ -52,7 +52,13 @@ namespace XNode { /// Allow connections where output value type is assignable from input value type (eg. Object --> ScriptableObject) InheritedInverse, /// Allow connections where output value type is assignable from input value or input value type is assignable from output value type - InheritedAny + InheritedAny, + /// Allow connections where input value type is castable from output value type. + Castable, + /// Allow connections where output value type is castable from input value type. + CastableInverse, + /// Allow connections where input value type is castable from output value type or output value type is castable from input value type. + CastableAny } #region Obsolete