GraphNodeDelegateFull

class omni.kit.widget.graph.graph_node_delegate_full.GraphNodeDelegateFull(scale_factor=1.0)

Bases: AbstractGraphNodeDelegate

The delegate with the Omniverse design.

Methods

__init__([scale_factor])

connection(model, source, target[, foreground])

Called to create the connection between ports

node_background(model, node_desc)

Called to create widgets of the node background

node_footer(model, node_desc)

Called to create widgets of the bottom of the node

node_header(model, node_desc)

Called to create widgets of the top of the node

node_header_input(model, node_desc)

Called to create the left part of the header that will be used as input when the node is collapsed

node_header_output(model, node_desc)

Called to create the right part of the header that will be used as output when the node is collapsed

port(model, node_desc, port_desc)

Called to create the middle part of the port

port_input(model, node_desc, port_desc)

Called to create the left part of the port that will be used as input

port_output(model, node_desc, port_desc)

Called to create the right part of the port that will be used as output

__init__(scale_factor=1.0)
connection(model, source: GraphConnectionDescription, target: GraphConnectionDescription, foreground: bool = False)

Called to create the connection between ports

node_background(model, node_desc: GraphNodeDescription)

Called to create widgets of the node background

Called to create widgets of the bottom of the node

node_header(model, node_desc: GraphNodeDescription)

Called to create widgets of the top of the node

node_header_input(model, node_desc: GraphNodeDescription)

Called to create the left part of the header that will be used as input when the node is collapsed

node_header_output(model, node_desc: GraphNodeDescription)

Called to create the right part of the header that will be used as output when the node is collapsed

port(model, node_desc: GraphNodeDescription, port_desc: GraphPortDescription)

Called to create the middle part of the port

port_input(model, node_desc: GraphNodeDescription, port_desc: GraphPortDescription)

Called to create the left part of the port that will be used as input

port_output(model, node_desc: GraphNodeDescription, port_desc: GraphPortDescription)

Called to create the right part of the port that will be used as output