Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


IOutputPortBuilder

Interface for defining an output port.
Read time 1 minuteLast updated 8 days ago

Definition

public interface IOutputPortBuilder : IPortBuilder<IOutputPortBuilder>

Remarks

Use this interface to create an output port before you assign its data type. To assign a data type, call IOutputPortBuilder.WithDataType or IOutputPortBuilder.WithDataType.

Methods

Method

Description

WithDataTypeConfigures the data type of the output port.
WithDataTypesConfigures the port as polymorphic, accepting any of the given types. The user picks the active type from a dropdown on the port.

Inheritance