IInputBasePortBuilder<T>
Base interface for input port builders in a port definition context.
Read time 1 minuteLast updated 6 days ago
Definition
- Type: Interface
- Namespace: Unity.GraphToolkit.Editor
- Assembly: UnityEditor
public interface IInputBasePortBuilder<T> : IPortBuilder<T>
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 allows method chaining using the builder pattern.
TMethods
Method | Description |
|---|---|
| AsTextArea | Configures the input port to use the TextAreaAttribute. |
| Delayed | Configures the input port to use the DelayedAttribute. |