Class PostProcessingNodePort
Represents a single port (input/output) of a post-processing node.
Inheritance
PostProcessingNodePort
Inherited Members
Namespace: Evergine.Framework.Graphics
Assembly: Evergine.Framework.dll
Syntax
public abstract class PostProcessingNodePort : IdentifiableObject
Constructors
PostProcessingNodePort()
Initializes a new instance of the PostProcessingNodePort class.
Declaration
public PostProcessingNodePort()
PostProcessingNodePort(string, APostProcessingNodePortType)
Initializes a new instance of the PostProcessingNodePort class.
Declaration
public PostProcessingNodePort(string name, APostProcessingNodePortType type)
Parameters
Type | Name | Description |
---|---|---|
string | name | The port name. |
APostProcessingNodePortType | type | The port type. |
Properties
Hidden
Gets or sets a value indicating whether the port will be shown in the graph view.
Declaration
[EvergineMember(2)]
public bool Hidden { get; set; }
Property Value
Type | Description |
---|---|
bool |
Name
Gets or sets the port name.
Declaration
[EvergineMember(0)]
public string Name { get; set; }
Property Value
Type | Description |
---|---|
string |
NodeOwner
Gets or sets the Node owner.
Declaration
[YamlIgnore]
public PostProcessingNode NodeOwner { get; set; }
Property Value
Type | Description |
---|---|
PostProcessingNode |
Type
Gets or sets the port value.
Declaration
[EvergineMember(1)]
public APostProcessingNodePortType Type { get; set; }
Property Value
Type | Description |
---|---|
APostProcessingNodePortType |