file_path stringlengths 32 153 | content stringlengths 0 3.14M |
|---|---|
omniverse-code/kit/exts/omni.graph.action/ogn/docs/OgnSwitchToken.rst | .. _omni_graph_action_SwitchToken_1:
.. _omni_graph_action_SwitchToken:
.. ================================================================================
.. THIS PAGE IS AUTO-GENERATED. DO NOT MANUALLY EDIT.
.. ================================================================================
:orphan:
.. meta::
... |
omniverse-code/kit/exts/omni.graph.action/ogn/docs/OgnOnClosing.rst | .. _omni_graph_action_OnClosing_1:
.. _omni_graph_action_OnClosing:
.. ================================================================================
.. THIS PAGE IS AUTO-GENERATED. DO NOT MANUALLY EDIT.
.. ================================================================================
:orphan:
.. meta::
:ti... |
omniverse-code/kit/exts/omni.graph.action/ogn/docs/OgnOnce.rst | .. _omni_graph_action_Once_1:
.. _omni_graph_action_Once:
.. ================================================================================
.. THIS PAGE IS AUTO-GENERATED. DO NOT MANUALLY EDIT.
.. ================================================================================
:orphan:
.. meta::
:title: Once
... |
omniverse-code/kit/exts/omni.graph.action/ogn/docs/OgnOnCustomEvent.rst | .. _omni_graph_action_OnCustomEvent_2:
.. _omni_graph_action_OnCustomEvent:
.. ================================================================================
.. THIS PAGE IS AUTO-GENERATED. DO NOT MANUALLY EDIT.
.. ================================================================================
:orphan:
.. meta::... |
omniverse-code/kit/exts/omni.graph.action/ogn/docs/OgnCounter.rst | .. _omni_graph_action_Counter_1:
.. _omni_graph_action_Counter:
.. ================================================================================
.. THIS PAGE IS AUTO-GENERATED. DO NOT MANUALLY EDIT.
.. ================================================================================
:orphan:
.. meta::
:title:... |
omniverse-code/kit/exts/omni.graph.action/ogn/docs/OgnOnObjectChange.rst | .. _omni_graph_action_OnObjectChange_4:
.. _omni_graph_action_OnObjectChange:
.. ================================================================================
.. THIS PAGE IS AUTO-GENERATED. DO NOT MANUALLY EDIT.
.. ================================================================================
:orphan:
.. meta... |
omniverse-code/kit/exts/omni.graph.action/ogn/docs/OgnFlipFlop.rst | .. _omni_graph_action_FlipFlop_1:
.. _omni_graph_action_FlipFlop:
.. ================================================================================
.. THIS PAGE IS AUTO-GENERATED. DO NOT MANUALLY EDIT.
.. ================================================================================
:orphan:
.. meta::
:titl... |
omniverse-code/kit/exts/omni.graph.action/ogn/docs/OgnCountdown.rst | .. _omni_graph_action_Countdown_1:
.. _omni_graph_action_Countdown:
.. ================================================================================
.. THIS PAGE IS AUTO-GENERATED. DO NOT MANUALLY EDIT.
.. ================================================================================
:orphan:
.. meta::
:ti... |
omniverse-code/kit/exts/omni.graph.action/ogn/docs/OgnBranch.rst | .. _omni_graph_action_Branch_1:
.. _omni_graph_action_Branch:
.. ================================================================================
.. THIS PAGE IS AUTO-GENERATED. DO NOT MANUALLY EDIT.
.. ================================================================================
:orphan:
.. meta::
:title: B... |
omniverse-code/kit/exts/omni.graph.action/ogn/docs/OgnOnMouseInput.rst | .. _omni_graph_action_OnMouseInput_1:
.. _omni_graph_action_OnMouseInput:
.. ================================================================================
.. THIS PAGE IS AUTO-GENERATED. DO NOT MANUALLY EDIT.
.. ================================================================================
:orphan:
.. meta::
... |
omniverse-code/kit/exts/omni.graph.action/ogn/docs/OgnOnImpulseEvent.rst | .. _omni_graph_action_OnImpulseEvent_2:
.. _omni_graph_action_OnImpulseEvent:
.. ================================================================================
.. THIS PAGE IS AUTO-GENERATED. DO NOT MANUALLY EDIT.
.. ================================================================================
:orphan:
.. meta... |
omniverse-code/kit/exts/omni.graph.action/ogn/docs/OgnSyncGate.rst | .. _omni_graph_action_SyncGate_1:
.. _omni_graph_action_SyncGate:
.. ================================================================================
.. THIS PAGE IS AUTO-GENERATED. DO NOT MANUALLY EDIT.
.. ================================================================================
:orphan:
.. meta::
:titl... |
omniverse-code/kit/exts/omni.graph.action/PACKAGE-LICENSES/omni.graph.action-LICENSE.md | Copyright (c) 2020, NVIDIA CORPORATION. All rights reserved.
NVIDIA CORPORATION and its licensors retain all intellectual property
and proprietary rights in and to this software, related documentation
and any modifications thereto. Any use, reproduction, disclosure or
distribution of this software and related docume... |
omniverse-code/kit/exts/omni.graph.action/config/extension.toml | [package]
title = "OmniGraph Action Graph"
version = "1.31.1"
category = "Graph"
feature = true
# Preview image. Folder named "data" automatically goes in git lfs (see .gitattributes file).
preview_image = "data/preview.png"
# Path (relative to the root) of the main documentation file.
readme = "docs/README.md"
changel... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/__init__.py | """Action Graph Functionality"""
# Required to be able to instantiate the object types
import omni.core
from ._impl.extension import _PublicExtension # noqa: F401
# Interface from the ABI bindings
from ._omni_graph_action import get_interface
|
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/OgnGateDatabase.py | """Support for simplified access to data on nodes of type omni.graph.action.Gate
This node controls a flow of execution based on the state of its gate. The gate can be opened or closed by execution pulses
sent to the gate controls
"""
import carb
import omni.graph.core as og
import omni.graph.core._omni_graph_core a... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/OgnBranchDatabase.py | """Support for simplified access to data on nodes of type omni.graph.action.Branch
Outputs an execution pulse along a branch based on a boolean condition
"""
import carb
import omni.graph.core as og
import omni.graph.core._omni_graph_core as _og
import omni.graph.tools.ogn as ogn
class OgnBranchDatabase(og.Databa... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/OgnOnMouseInputDatabase.py | """Support for simplified access to data on nodes of type omni.graph.action.OnMouseInput
Event node which fires when a mouse event occurs.
You can choose which mouse element this node reacts to. When mouse element
is chosen to be a button, the only meaningful outputs are: outputs:pressed, outputs:released and outputs... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/OgnOnImpulseEventDatabase.py | """Support for simplified access to data on nodes of type omni.graph.action.OnImpulseEvent
Triggers the output execution once when state is set
"""
import omni.graph.core as og
import omni.graph.core._omni_graph_core as _og
import omni.graph.tools.ogn as ogn
class OgnOnImpulseEventDatabase(og.Database):
"""He... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/OgnOnStageEventDatabase.py | """Support for simplified access to data on nodes of type omni.graph.action.OnStageEvent
Executes when the specified Stage Event occurs. Stage Events are emitted when certain USD stage-related actions are performed
by the system:
Saved: USD file saved.
Selection Changed: USD Prim selection has changed.
Hierarchy Ch... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/OgnForEachDatabase.py | """Support for simplified access to data on nodes of type omni.graph.action.ForEach
Executes the a loop body once for each element in the input array. The finished output is executed after all iterations are
complete
"""
from typing import Any
import carb
import omni.graph.core as og
import omni.graph.core._omni_gra... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/OgnOnCustomEventDatabase.py | """Support for simplified access to data on nodes of type omni.graph.action.OnCustomEvent
Event node which fires when the specified custom event is sent. This node is used in combination with SendCustomEvent
"""
import sys
import traceback
import carb
import omni.graph.core as og
import omni.graph.core._omni_graph_c... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/OgnOnObjectChangeDatabase.py | """Support for simplified access to data on nodes of type omni.graph.action.OnObjectChange
Executes an output execution pulse when the watched USD Object changes
"""
import usdrt
import omni.graph.core as og
import omni.graph.core._omni_graph_core as _og
import omni.graph.tools.ogn as ogn
class OgnOnObjectChangeD... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/OgnOnVariableChangeDatabase.py | """Support for simplified access to data on nodes of type omni.graph.action.OnVariableChange
Executes an output execution pulse when the chosen variable changes
"""
import omni.graph.core as og
import omni.graph.core._omni_graph_core as _og
import omni.graph.tools.ogn as ogn
class OgnOnVariableChangeDatabase(og.D... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/OgnOnKeyboardInputDatabase.py | """Support for simplified access to data on nodes of type omni.graph.action.OnKeyboardInput
Event node which fires when a keyboard event occurs. The event can be a combination of keys, containing key modifiers of
ctrl, alt and shift, and a normal key of any key. keyIn.
For key combinations, the press event requires a... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/OgnOnPlaybackTickDatabase.py | """Support for simplified access to data on nodes of type omni.graph.action.OnPlaybackTick
Executes an output execution pulse during playback
"""
import omni.graph.core as og
import omni.graph.core._omni_graph_core as _og
import omni.graph.tools.ogn as ogn
class OgnOnPlaybackTickDatabase(og.Database):
"""Help... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/OgnOnMessageBusEventDatabase.py | """Support for simplified access to data on nodes of type omni.graph.action.OnMessageBusEvent
Event node which fires when the specified event is popped from the App Message Bus. Carb events can be sent with Python:
msg = carb.events.type_from_string('my_event_name') omni.kit.app.get_app().get_message_bus_event_stream(... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/OgnCountdownDatabase.py | """Support for simplified access to data on nodes of type omni.graph.action.Countdown
Delays for a number of updates (the duration) while firing output tick activations with a given period. When the countdown
is complete it triggers the finished output. The first compute does not generate a tick output.
"""
import sy... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/OgnOnGamepadInputDatabase.py | """Support for simplified access to data on nodes of type omni.graph.action.OnGamepadInput
Event node which fires when a gamepad event occurs. This node only capture events on buttons, excluding triggers and sticks
"""
import omni.graph.core as og
import omni.graph.core._omni_graph_core as _og
import omni.graph.too... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/OgnSendCustomEventDatabase.py | """Support for simplified access to data on nodes of type omni.graph.action.SendCustomEvent
Sends a custom event, which will asynchronously trigger any OnCustomEvent nodes which are listening for the same eventName
"""
import sys
import traceback
import carb
import omni.graph.core as og
import omni.graph.core._omni_... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/OgnOnLoadedDatabase.py | """Support for simplified access to data on nodes of type omni.graph.action.OnLoaded
Triggers the output on the first update of the graph after it is created or loaded. This will run before any other event
node, and will only run once after this node is created.
"""
import omni.graph.core as og
import omni.graph.cor... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/OgnSyncGateDatabase.py | """Support for simplified access to data on nodes of type omni.graph.action.SyncGate
This node triggers when all its input executions have triggered successively at the same synchronization value.
"""
import omni.graph.core as og
import omni.graph.core._omni_graph_core as _og
import omni.graph.tools.ogn as ogn
cl... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/OgnMultisequenceDatabase.py | """Support for simplified access to data on nodes of type omni.graph.action.Multisequence
Outputs an execution pulse along each of its N outputs in sequence. For every single input execution pulse, each and every
output will be exclusively enabled in order.
"""
import carb
import omni.graph.core as og
import omni.gr... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/OgnDelayDatabase.py | """Support for simplified access to data on nodes of type omni.graph.action.Delay
This node suspends the graph for a period of time before continuing. This node, and nodes upstream of this node are locked
for the duration of the delay, which means any subsequent executions will be ignored.
"""
import omni.graph.core... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/OgnCounterDatabase.py | """Support for simplified access to data on nodes of type omni.graph.action.Counter
This node counts the number of times it is computed since being reset
"""
import omni.graph.core as og
import omni.graph.core._omni_graph_core as _og
import omni.graph.tools.ogn as ogn
class OgnCounterDatabase(og.Database):
""... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/OgnSetPrimActiveDatabase.py | """Support for simplified access to data on nodes of type omni.graph.action.SetPrimActive
Set a Prim active or not in the stage.
"""
import usdrt
import omni.graph.core as og
import omni.graph.core._omni_graph_core as _og
import omni.graph.tools.ogn as ogn
class OgnSetPrimActiveDatabase(og.Database):
"""Helpe... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/OgnSwitchTokenDatabase.py | """Support for simplified access to data on nodes of type omni.graph.action.SwitchToken
Outputs an execution pulse along a branch which matches the input token. For example if inputs:value is set to 'A' it will
continue downstream from outputs:outputNN if there is an inputs:branchNN is set to 'A'
"""
import omni.gra... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/OgnSequenceDatabase.py | """Support for simplified access to data on nodes of type omni.graph.action.Sequence
Outputs an execution pulse along output A and B in sequence
"""
import carb
import omni.graph.core as og
import omni.graph.core._omni_graph_core as _og
import omni.graph.tools.ogn as ogn
class OgnSequenceDatabase(og.Database):
... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/OgnTickNDatabase.py | """Support for simplified access to data on nodes of type omni.graph.action.TickN
Delays for a number of updates while firing output tick activations with a given period
"""
import omni.graph.core as og
import omni.graph.core._omni_graph_core as _og
import omni.graph.tools.ogn as ogn
import traceback
import sys
class... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/OgnOnceDatabase.py | """Support for simplified access to data on nodes of type omni.graph.action.Once
Controls flow of execution by passing input through differently on the first time
"""
import omni.graph.core as og
import omni.graph.core._omni_graph_core as _og
import omni.graph.tools.ogn as ogn
class OgnOnceDatabase(og.Database):
... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/OgnFlipFlopDatabase.py | """Support for simplified access to data on nodes of type omni.graph.action.FlipFlop
This node alternates activating its outputs, starting with A
"""
import carb
import omni.graph.core as og
import omni.graph.core._omni_graph_core as _og
import omni.graph.tools.ogn as ogn
class OgnFlipFlopDatabase(og.Database):
... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/OgnAddPrimRelationshipDatabase.py | """Support for simplified access to data on nodes of type omni.graph.action.AddPrimRelationship
Adds a target path to a relationship property. If the relationship property does not exist it will be created. Duplicate
targets will not be added.
"""
import omni.graph.core as og
import omni.graph.core._omni_graph_core ... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/OgnRationalTimeSyncGateDatabase.py | """Support for simplified access to data on nodes of type omni.graph.action.RationalTimeSyncGate
This node triggers when all its input executions have triggered successively at the same rational time.
"""
import omni.graph.core as og
import omni.graph.core._omni_graph_core as _og
import omni.graph.tools.ogn as ogn
... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/OgnOnTickDatabase.py | """Support for simplified access to data on nodes of type omni.graph.action.OnTick
Executes an output execution pulse at a regular multiple of the refresh rate
"""
import omni.graph.core as og
import omni.graph.core._omni_graph_core as _og
import omni.graph.tools.ogn as ogn
class OgnOnTickDatabase(og.Database):
... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/OgnForLoopDatabase.py | """Support for simplified access to data on nodes of type omni.graph.action.ForLoop
Executes the a loop body once for each value within a range. When step is positive, the values in the range are determined
by the formula:
r[i] = start + step*i, i >= 0 & r[i] < stop.
When step is negative the constraint is instead r... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/OgnOnClosingDatabase.py | """Support for simplified access to data on nodes of type omni.graph.action.OnClosing
Executes an output execution when the USD stage is about to be closed.
Note that only simple necessary actions should be
taken during closing since the application is in the process of cleaning up the existing state and some systems... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/OgnMultigateDatabase.py | """Support for simplified access to data on nodes of type omni.graph.action.Multigate
This node cycles through each of its N outputs. On each input, one output will be activated. Outputs will be activated in
sequence, eg: 0->1->2->3->4->0->1...
"""
import carb
import omni.graph.core as og
import omni.graph.core._omn... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/nodes/OgnOnLoaded.cpp | // Copyright (c) 2022-2023, NVIDIA CORPORATION. All rights reserved.
//
// NVIDIA CORPORATION and its licensors retain all intellectual property
// and proprietary rights in and to this software, related documentation
// and any modifications thereto. Any use, reproduction, disclosure or
// distribution of this softwa... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/nodes/OgnSendCustomEvent.ogn | {
"SendCustomEvent": {
"description": [
"Sends a custom event, which will asynchronously trigger any OnCustomEvent nodes which are listening for",
"the same eventName"],
"version": 1,
"categories": ["graph:action", "event"],
"uiName": "Send Custom Event",
... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/nodes/OgnSetPrimActive.ogn | {
"SetPrimActive": {
"version": 1,
"description": [ "Set a Prim active or not in the stage." ],
"uiName": "Set Prim Active",
"scheduling": [ "usd-write" ],
"categories": [ "graph:action", "sceneGraph" ],
"inputs": {
"execIn": {
"type": "exe... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/nodes/OgnForLoop.ogn | {
"ForLoop": {
"version": 1,
"description": [
"Executes the a loop body once for each value within a range.",
"When step is positive, the values in the range are determined by the formula:\n",
"r[i] = start + step*i, i >= 0 & r[i] < stop.\nWhen step is negative th... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/nodes/OgnOnKeyboardInput.cpp | // Copyright (c) 2021-2023, NVIDIA CORPORATION. All rights reserved.
//
// NVIDIA CORPORATION and its licensors retain all intellectual property
// and proprietary rights in and to this software, related documentation
// and any modifications thereto. Any use, reproduction, disclosure or
// distribution of this softwa... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/nodes/OgnRationalTimeSyncGate.cpp | // Copyright (c) 2023, NVIDIA CORPORATION. All rights reserved.
//
// NVIDIA CORPORATION and its licensors retain all intellectual property
// and proprietary rights in and to this software, related documentation
// and any modifications thereto. Any use, reproduction, disclosure or
// distribution of this software an... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/nodes/OgnOnClosing.ogn | {
"OnClosing": {
"version": 1,
"description": [
"Executes an output execution when the USD stage is about to be closed.\n",
"Note that only simple necessary actions should be taken during closing since the",
"application is in the process of cleaning up the existi... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/nodes/OgnSequence.ogn | {
"Sequence": {
"version": 1,
"description": "Outputs an execution pulse along output A and B in sequence",
"uiName": "Sequence",
"metadata": {"hidden": "true"},
"categories": ["graph:action", "flowControl"],
"scheduling": ["threadsafe"],
"inputs": {
... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/nodes/OgnBranch.cpp | // Copyright (c) 2021-2023, NVIDIA CORPORATION. All rights reserved.
//
// NVIDIA CORPORATION and its licensors retain all intellectual property
// and proprietary rights in and to this software, related documentation
// and any modifications thereto. Any use, reproduction, disclosure or
// distribution of this softwa... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/nodes/OgnOnVariableChange.ogn | {
"OnVariableChange": {
"version": 1,
"description": "Executes an output execution pulse when the chosen variable changes",
"uiName": "On Variable Change",
"categories": ["graph:action", "event"],
"scheduling": ["threadsafe"],
"inputs": {
"variableName": {... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/nodes/OgnGate.ogn | {
"Gate": {
"version": 1,
"description": ["This node controls a flow of execution based on the state of its gate.",
"The gate can be opened or closed by execution pulses sent to the gate controls"
],
"uiName": "Gate",
"categories": ["graph:action","flo... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/nodes/OgnForLoop.cpp | // Copyright (c) 2021-2023, NVIDIA CORPORATION. All rights reserved.
//
// NVIDIA CORPORATION and its licensors retain all intellectual property
// and proprietary rights in and to this software, related documentation
// and any modifications thereto. Any use, reproduction, disclosure or
// distribution of this softwa... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/nodes/OgnOnLoaded.ogn | {
"OnLoaded": {
"description": [
"Triggers the output on the first update of the graph after it is created or loaded.",
"This will run before any other event node, and will only run once after this",
"node is created."
],
"version": 1,
"uiName": "O... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/nodes/OgnMultigate.cpp | // Copyright (c) 2021-2023, NVIDIA CORPORATION. All rights reserved.
//
// NVIDIA CORPORATION and its licensors retain all intellectual property
// and proprietary rights in and to this software, related documentation
// and any modifications thereto. Any use, reproduction, disclosure or
// distribution of this softwa... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/nodes/OgnSequence.cpp | // Copyright (c) 2021-2023, NVIDIA CORPORATION. All rights reserved.
//
// NVIDIA CORPORATION and its licensors retain all intellectual property
// and proprietary rights in and to this software, related documentation
// and any modifications thereto. Any use, reproduction, disclosure or
// distribution of this softwa... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/nodes/OgnOnGamepadInput.ogn | {
"OnGamepadInput": {
"description": ["Event node which fires when a gamepad event occurs. This node only capture events on buttons, ",
"excluding triggers and sticks"],
"version": 1,
"uiName": "On Gamepad Input",
"categories": ["graph:action", "input:gamepad... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/nodes/OgnOnce.ogn | {
"Once": {
"description": [
"Controls flow of execution by passing input through differently on the first time"
],
"version": 1,
"uiName": "Once",
"categories": ["graph:action", "flowControl"],
"scheduling": ["threadsafe"],
"inputs": {
... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/nodes/OgnOnMouseInput.ogn | {
"OnMouseInput": {
"description": ["Event node which fires when a mouse event occurs.\n",
"You can choose which mouse element this node reacts to.",
"When mouse element is chosen to be a button, the only meaningful outputs are: outputs:pressed, outputs:releas... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/nodes/OgnOnce.cpp | // Copyright (c) 2022-2023, NVIDIA CORPORATION. All rights reserved.
//
// NVIDIA CORPORATION and its licensors retain all intellectual property
// and proprietary rights in and to this software, related documentation
// and any modifications thereto. Any use, reproduction, disclosure or
// distribution of this softwa... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/nodes/OgnOnMessageBusEvent.ogn | {
"OnMessageBusEvent": {
"description": [
"Event node which fires when the specified event is popped from the App Message Bus.",
"Carb events can be sent with Python:",
"msg = carb.events.type_from_string('my_event_name')",
"omni.kit.app.get_app().get_message_... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/nodes/OgnOnStageEvent.py | """
This is the implementation of the OGN node defined in OgnOnStageEvent.ogn
"""
from contextlib import suppress
import carb
import omni.graph.core as og
import omni.kit.app
import omni.usd
from omni.graph.action import get_interface
from omni.graph.action.ogn.OgnOnStageEventDatabase import OgnOnStageEventDatabase
#... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/nodes/OgnOnKeyboardInput.ogn | {
"OnKeyboardInput": {
"description": [
"Event node which fires when a keyboard event occurs.",
"The event can be a combination of keys, containing key modifiers of ctrl, alt and shift, and a normal key of any key. keyIn.\n",
"For key combinations, the press event require... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/nodes/OgnOnMouseInput.cpp | // Copyright (c) 2021-2023, NVIDIA CORPORATION. All rights reserved.
//
// NVIDIA CORPORATION and its licensors retain all intellectual property
// and proprietary rights in and to this software, related documentation
// and any modifications thereto. Any use, reproduction, disclosure or
// distribution of this softwa... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/nodes/OgnSendCustomEvent.py | """
This is the implementation of the OGN node defined in OgnSendCustomEvent.ogn
"""
import codecs
import pickle
import carb.events
import omni.kit.app
from omni.graph.action import get_interface
def registered_event_name(event_name):
"""Returns the internal name used for the given custom event name"""
n = "... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/nodes/OgnGate.cpp | // Copyright (c) 2021-2023, NVIDIA CORPORATION. All rights reserved.
//
// NVIDIA CORPORATION and its licensors retain all intellectual property
// and proprietary rights in and to this software, related documentation
// and any modifications thereto. Any use, reproduction, disclosure or
// distribution of this softwa... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/nodes/OgnOnCustomEvent.py | """
This is the implementation of the OGN node defined in OgnOnCustomEvent.ogn
"""
import codecs
import pickle
from contextlib import suppress
import carb.events
import omni.graph.core as og
import omni.kit.app
from omni.graph.action import get_interface
from omni.graph.action.ogn.OgnOnCustomEventDatabase import OgnOn... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/nodes/OgnFlipFlop.ogn | {
"FlipFlop": {
"version": 1,
"description": "This node alternates activating its outputs, starting with A",
"uiName": "Flip Flop",
"categories": ["graph:action","flowControl"],
"scheduling": ["threadsafe"],
"exclude": ["tests"],
"inputs": {
"execI... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/nodes/OgnCountdown.ogn | {
"Countdown": {
"version": 1,
"description": [
"Delays for a number of updates (the duration) while firing output tick activations with a given period.",
"When the countdown is complete it triggers the finished output.",
"The first compute does not generate a tic... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/nodes/OgnDelay.cpp | // Copyright (c) 2021-2023, NVIDIA CORPORATION. All rights reserved.
//
// NVIDIA CORPORATION and its licensors retain all intellectual property
// and proprietary rights in and to this software, related documentation
// and any modifications thereto. Any use, reproduction, disclosure or
// distribution of this softwa... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/nodes/OgnAddPrimRelationship.cpp | // Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved.
//
// NVIDIA CORPORATION and its licensors retain all intellectual property
// and proprietary rights in and to this software, related documentation
// and any modifications thereto. Any use, reproduction, disclosure or
// distribution of this software an... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/nodes/OgnTickN.ogn | {
"TickN": {
"version": 1,
"description": [ "Delays for a number of updates while firing output tick activations with a given period"],
"uiName": "TickN",
"language": "python",
"categories": "internal:test",
"exclude": ["tests", "usd", "docs"],
"metadata": {"h... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/nodes/OgnOnPlaybackTick.cpp | // Copyright (c) 2021-2023, NVIDIA CORPORATION. All rights reserved.
//
// NVIDIA CORPORATION and its licensors retain all intellectual property
// and proprietary rights in and to this software, related documentation
// and any modifications thereto. Any use, reproduction, disclosure or
// distribution of this softwa... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/nodes/OgnAddPrimRelationship.ogn | {
"AddPrimRelationship": {
"version": 1,
"description": [ "Adds a target path to a relationship property.",
"If the relationship property does not exist it will be created.",
"Duplicate targets will not be added."],
"uiName": "Add Prim Relati... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/nodes/OgnMultisequence.cpp | // Copyright (c) 2022-2023, NVIDIA CORPORATION. All rights reserved.
//
// NVIDIA CORPORATION and its licensors retain all intellectual property
// and proprietary rights in and to this software, related documentation
// and any modifications thereto. Any use, reproduction, disclosure or
// distribution of this softwa... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/nodes/OgnSetPrimActive.cpp | // Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved.
//
// NVIDIA CORPORATION and its licensors retain all intellectual property
// and proprietary rights in and to this software, related documentation
// and any modifications thereto. Any use, reproduction, disclosure or
// distribution of this software an... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/nodes/OgnBranch.ogn | {
"Branch": {
"version": 1,
"description": "Outputs an execution pulse along a branch based on a boolean condition",
"uiName": "Branch",
"categories": ["graph:action","flowControl"],
"scheduling": ["threadsafe"],
"inputs": {
"condition": {
... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/nodes/OgnTickN.py | # Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved.
#
# NVIDIA CORPORATION and its licensors retain all intellectual property
# and proprietary rights in and to this software, related documentation
# and any modifications thereto. Any use, reproduction, disclosure or
# distribution of this software and rela... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/nodes/OgnCountdown.py | # Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved.
#
# NVIDIA CORPORATION and its licensors retain all intellectual property
# and proprietary rights in and to this software, related documentation
# and any modifications thereto. Any use, reproduction, disclosure or
# distribution of this software and rela... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/nodes/OgnCounter.ogn | {
"Counter": {
"version": 1,
"description": "This node counts the number of times it is computed since being reset",
"uiName": "Counter",
"categories": ["graph:action", "function"],
"scheduling": ["threadsafe"],
"exclude": ["tests"],
"inputs": {
"e... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/nodes/OgnOnCustomEvent.ogn | {
"OnCustomEvent": {
"description": [
"Event node which fires when the specified custom event is sent.",
"This node is used in combination with SendCustomEvent"],
"version": 2,
"uiName": "On Custom Event",
"categories": ["graph:action", "event"],
"sche... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/nodes/OgnOnClosing.cpp | // Copyright (c) 2022-2023, NVIDIA CORPORATION. All rights reserved.
//
// NVIDIA CORPORATION and its licensors retain all intellectual property
// and proprietary rights in and to this software, related documentation
// and any modifications thereto. Any use, reproduction, disclosure or
// distribution of this softwa... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/nodes/OgnOnMessageBusEvent.py | """
This is the implementation of the OGN node defined in OgnOnMessageBusEvent.ogn
"""
from contextlib import suppress
from typing import Optional
import carb
import carb.dictionary
import carb.events
import numpy as np
import omni.graph.core as og
import omni.kit.app
from omni.graph.action import get_interface
from o... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/nodes/OgnOnStageEvent.ogn | {
"OnStageEvent": {
"version": 3,
"description": [
"Executes when the specified Stage Event occurs. Stage Events are emitted when certain",
"USD stage-related actions are performed by the system:\n",
"Saved: USD file saved.\n",
"Selection Changed: USD ... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/nodes/OgnOnImpulseEvent.cpp | // Copyright (c) 2021-2023, NVIDIA CORPORATION. All rights reserved.
//
// NVIDIA CORPORATION and its licensors retain all intellectual property
// and proprietary rights in and to this software, related documentation
// and any modifications thereto. Any use, reproduction, disclosure or
// distribution of this softwa... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/nodes/OgnCounter.cpp | // Copyright (c) 2022-2023 NVIDIA CORPORATION. All rights reserved.
//
// NVIDIA CORPORATION and its licensors retain all intellectual property
// and proprietary rights in and to this software, related documentation
// and any modifications thereto. Any use, reproduction, disclosure or
// distribution of this softwa... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/nodes/OgnForEach.cpp | // Copyright (c) 2022-2023, NVIDIA CORPORATION. All rights reserved.
//
// NVIDIA CORPORATION and its licensors retain all intellectual property
// and proprietary rights in and to this software, related documentation
// and any modifications thereto. Any use, reproduction, disclosure or
// distribution of this softwa... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/nodes/OgnRationalTimeSyncGate.ogn | {
"RationalTimeSyncGate": {
"version": 1,
"description": ["This node triggers when all its input executions have triggered successively at the same rational time."],
"uiName": "Rational Sync Gate",
"categories": ["graph:action","flowControl"],
"scheduling": ["threadsafe"],
... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/nodes/OgnSwitchToken.cpp | // Copyright (c) 2022-2023, NVIDIA CORPORATION. All rights reserved.
//
// NVIDIA CORPORATION and its licensors retain all intellectual property
// and proprietary rights in and to this software, related documentation
// and any modifications thereto. Any use, reproduction, disclosure or
// distribution of this softwa... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/nodes/OgnOnVariableChange.cpp | // Copyright (c) 2022-2023, NVIDIA CORPORATION. All rights reserved.
//
// NVIDIA CORPORATION and its licensors retain all intellectual property
// and proprietary rights in and to this software, related documentation
// and any modifications thereto. Any use, reproduction, disclosure or
// distribution of this softwa... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/nodes/OgnOnTick.ogn | {
"OnTick": {
"version": 1,
"description": "Executes an output execution pulse at a regular multiple of the refresh rate",
"uiName": "On Tick",
"categories": ["graph:action", "event"],
"scheduling": ["threadsafe"],
"inputs": {
"framePeriod": {
... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/nodes/OgnOnObjectChange.cpp | // Copyright (c) 2021-2023, NVIDIA CORPORATION. All rights reserved.
//
// NVIDIA CORPORATION and its licensors retain all intellectual property
// and proprietary rights in and to this software, related documentation
// and any modifications thereto. Any use, reproduction, disclosure or
// distribution of this softwa... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/nodes/OgnOnPlaybackTick.ogn | {
"OnPlaybackTick": {
"version": 1,
"description": "Executes an output execution pulse during playback",
"uiName": "On Playback Tick",
"categories": ["graph:action", "event"],
"scheduling": ["threadsafe"],
"inputs": {
},
"outputs": {
"tick"... |
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/nodes/OgnOnTick.cpp | // Copyright (c) 2021-2023, NVIDIA CORPORATION. All rights reserved.
//
// NVIDIA CORPORATION and its licensors retain all intellectual property
// and proprietary rights in and to this software, related documentation
// and any modifications thereto. Any use, reproduction, disclosure or
// distribution of this softwa... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.