Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


IInputBasePortBuilder<T>

Base interface for input port builders in a port definition context.
Read time 1 minuteLast updated 6 days ago

Definition

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
T
allows method chaining using the builder pattern.

Methods

Method

Description

AsTextAreaConfigures the input port to use the TextAreaAttribute.
DelayedConfigures the input port to use the DelayedAttribute.

Inheritance