1
0
mirror of https://github.com/Siccity/xNode.git synced 2025-12-20 17:26:02 +08:00

Update Node.cs

This commit is contained in:
Raistlin Wolfe 2022-09-12 18:22:03 -06:00 committed by GitHub
parent 75078edd20
commit d19ea40e38
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -52,7 +52,13 @@ namespace XNode {
/// <summary> Allow connections where output value type is assignable from input value type (eg. Object --> ScriptableObject)</summary>
InheritedInverse,
/// <summary> Allow connections where output value type is assignable from input value or input value type is assignable from output value type</summary>
InheritedAny
InheritedAny,
/// <summary> Allow connections where input value type is castable from output value type. </summary>
Castable,
/// <summary> Allow connections where output value type is castable from input value type. </summary>
CastableInverse,
/// <summary> Allow connections where input value type is castable from output value type or output value type is castable from input value type. </summary>
CastableAny
}
#region Obsolete