Class ReferenceNodeConnection
This class represents a connection between two nodes through a reference node. Only available in the editor.
Inherited Members
Namespace: InsaneScatterbrain.ScriptGraph
Syntax
[Serializable]
[MovedFrom(false, "InsaneScatterbrain.ScriptGraph", null, "DuplicateConnection")]
public class ReferenceNodeConnection
Constructors
ReferenceNodeConnection(ReferenceNode, InPort, OutPort)
Creates a new reference node connection between the two given ports.
Declaration
public ReferenceNodeConnection(ReferenceNode referenceNode, InPort inPort, OutPort outPort)
Parameters
Type | Name | Description |
---|---|---|
ReferenceNode | referenceNode | The reference node. |
InPort | inPort | The in port. |
OutPort | outPort | The out port. |
Properties
InPort
Gets the in port.
Declaration
public InPort InPort { get; }
Property Value
Type | Description |
---|---|
InPort |
OutPort
Gets the out port.
Declaration
public OutPort OutPort { get; }
Property Value
Type | Description |
---|---|
OutPort |
ReferenceNode
Gets the connected reference node.
Declaration
public ReferenceNode ReferenceNode { get; }
Property Value
Type | Description |
---|---|
ReferenceNode |