AutoNode

AutoNode is the terminology used for the general process of generating Python node type definitions directly without requiring the use of a .ogn or .py implementation file, and without explicit scripting required to construct the node type definition directly. It creates Python node types with minimal effort.

Node Type via Function

The main method of creating a node type is to apply the @omni.graph.core.create_node_type decorator to a simple Python function that operates on the data types used by OmniGraph attributes. You can run this decorated function from anywhere - sourcing a file, entering it directly in the script editor, or as part of your extension’s script modules.

AutoNode Converts Python To Graph Node

It is important to understand the distinction here between node and node type. A node is a concrete object that lives in an OmniGraph in a USD scene. A node type is the pattern that can be used to create multiple node*s that share the same attributes and compute function. |autonode| is creating a *node type. You will still need to create a specific node instance for it to appear in your graph.

Learn From Examples

We recommend starting with the Walkthroughs. They will take you from the beginning where you define your Python function and attach the decorator to it, to finding it in the graph editor and wiring it up to make a fully functional operation. There is also a separate path that shows you how to construct the graph using a scripted approach rather than using the graph editor.

Guided Walkthroughs

Once you have a feel for how to set things up you can move into more complicated node type definition by exploring the configuration details and the full set of supported Data Types.

Explore All of the Data Types

The simple example above uses two of the common data types, 32-bit floating point value and 3-tuple of 32-bit floating point values. There are over 100 supported types, corresponding to the data types supported by OmniGraph attributes. You can look through the entire catalog of supported types, which contains links to examples of AutoNode definitions that use each type.

As a complement to the comprehensive list of all supported data types there is a similarly exhaustive list of examples that use each of the available data types. There are also examples of other uses, including how to return more than one output and using the decorator parameters.

See Examples

Advanced Configuration

In addition to the simple information that can be extracted directly from the function signature and docstring, you can also add extra metadata as decorator arguments. This extra information allows you to customize some of the otherwise automatically generated information such as the node type name as it will appear in the UI. Explore the full list of configuration parameters to see how they affect the generated node types.

Missing Pieces

The decorated function approach specifies the critical information required to implement a basic node type definition, however being restricted to Python annotation information there are several features it is unable to handle that are present in the more descriptive .ogn file definition.

How It Works

If you are a developer who is curious to see exactly how this decorator functionality was implemented have a look under the hood for more details. While you do not need to know any of this to work with AutoNode it can be informative if you are having any trouble with getting a properly configured function definition.