Tutorial Python Node: Bundle Manipulation

This is a tutorial node. It exercises functionality for the manipulation of bundle attribute contents. The configuration is the same as omni.graph.tutorials.BundleManipulation except that the implementation language is Python

Installation

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

Inputs

Name

Type

Description

Default

Full Bundle (fullBundle)

bundle

Bundle whose contents are passed to the output in their entirety

Filtered Bundle (filteredBundle)

bundle

Bundle whose contents are filtered before being added to the output

filters

token[]

List of filter names to be applied to the filteredBundle. Any filter name appearing in this list will be applied to members of that bundle and only those passing all filters will be added to the output bundle. Legal filter values are ‘big’ (arrays of size > 10), ‘x’ (attributes whose name contains the letter x), and ‘int’ (attributes whose base type is integer).

[]

Outputs

Name

Type

Description

Default

combinedBundle

bundle

This is the union of fullBundle and filtered members of the filteredBundle.