Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


Build()

Builds and returns the final IPort instance based on the current configuration of the builder.
Read time 1 minuteLast updated 6 days ago

Definition

IPort Build()

Returns

Type

Description

IPortThe constructed IPort.

Remarks

Call this method after setting all desired configuration options using the builder methods. The builder captures options such as the port's data type, display name, connector style, and default value, if applicable. This method finalizes the port and adds it to the graph. After calling
Build()
, do not modify the builder further. This method is typically called at the end of a chain.

Examples

context.AddInputPort("MyPort") .WithDataType(typeof(float)) .WithDisplayName("My Float Port") .WithConnectorUI(PortConnectorUI.Circle) .Build();