Is Empty#

Checks if the given input is empty. An input is considered empty if there is no data. A string or array of size 0 is considered empty whereas a blank string ‘ ‘ is not empty. A float with value 0.0 and int[2] with value [0, 0] are not empty.

Installation#

To use this Node, you must enable omni.graph.nodes in the Extension Manager.

Inputs#

Name

Type

Description

Default

Input (input)

any

The input to check if empty

Outputs#

Name

Type

Description

Default

Is Empty (isEmpty)

bool

True if the input is empty, false otherwise