Interface IInputBasePortBuilder<T>
Base interface for input port builders in a port definition context.
Inherited Members
Namespace: Unity.GraphToolkit.Editor
Assembly: Unity.GraphToolkit.Editor.dll
Syntax
public interface IInputBasePortBuilder<T> : IPortBuilder<T>
Type Parameters
Name | Description |
---|---|
T | The specific builder type implementing this interface. |
Remarks
Use this interface when defining input ports in a custom node. It extends the generic IPortBuilder<T> interface with input-specific configuration options.
The generic parameter T
allows method chaining using the builder pattern.
Methods
Delayed()
Configures the input port to use the DelayedAttribute.
Declaration
T Delayed()
Returns
Type | Description |
---|---|
T | The current builder instance for method chaining. |
Remarks
Apply this setting when the port’s value should only update after the user finishes editing input in the UI. This is useful for optimizing performance or avoiding intermediate updates during data entry.