mirror of
https://github.com/Siccity/xNode.git
synced 2025-12-20 01:06:01 +08:00
missing assignments in OutputAttribute and InputAttribute
This commit is contained in:
parent
8bf4c91721
commit
9fe26b2948
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user