Tutorial Node: Defaults#

This is a tutorial node. It will move the values of inputs to corresponding outputs. Inputs all have unspecified, and therefore empty, default values.

Installation#

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

Inputs#

Name

Type

Description

Default

a_bool

bool

This is an attribute of type boolean

a_half

half

This is an attribute of type 16 bit floating point

a_int

int

This is an attribute of type 32 bit integer

a_int64

int64

This is an attribute of type 64 bit integer

a_float

float

This is an attribute of type 32 bit floating point

a_double

double

This is an attribute of type 64 bit floating point

a_string

string

This is an attribute of type string

a_token

token

This is an attribute of type interned string with fast comparison and hashing

a_uchar

uchar

This is an attribute of type unsigned 8 bit integer

a_uint

uint

This is an attribute of type unsigned 32 bit integer

a_uint64

uint64

This is an attribute of type unsigned 64 bit integer

a_int2

int[2]

This is an attribute of type 2-tuple of integers

a_matrix

matrixd[2]

This is an attribute of type 2x2 matrix

a_array

float[]

This is an attribute of type array of floats

Outputs#

Name

Type

Description

Default

a_bool

bool

This is a computed attribute of type boolean

a_half

half

This is a computed attribute of type 16 bit floating point

a_int

int

This is a computed attribute of type 32 bit integer

a_int64

int64

This is a computed attribute of type 64 bit integer

a_float

float

This is a computed attribute of type 32 bit floating point

a_double

double

This is a computed attribute of type 64 bit floating point

a_string

string

This is a computed attribute of type string

a_token

token

This is a computed attribute of type interned string with fast comparison and hashing

a_uchar

uchar

This is a computed attribute of type unsigned 8 bit integer

a_uint

uint

This is a computed attribute of type unsigned 32 bit integer

a_uint64

uint64

This is a computed attribute of type unsigned 64 bit integer

a_int2

int[2]

This is a computed attribute of type 2-tuple of integers

a_matrix

matrixd[2]

This is a computed attribute of type 2x2 matrix

a_array

float[]

This is a computed attribute of type array of floats