Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


TryGetValue<T>(out T)

Retrieves the current value assigned to the port’s UI field.
Read time 1 minuteLast updated 6 days ago

Definition

TryGetValue<T>(T)

bool TryGetValue<T>(out T value)

Parameters

value

T
When successful, contains the value assigned to the port’s field.

Returns

Type

Description

bool
true
if the port is not connected and a field value is available; otherwise,
false
.

Remarks

This method is intended for editor-time inspection of an input port’s value, configured through a field displayed in the UI. If the port is connected, the field is hidden and no value is available, so the method returns
false
. If the value was never explicitly set, this method still returns
true
, and
value
will contain the default value for type
T
.