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