file_path
stringlengths
32
153
content
stringlengths
0
3.14M
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/nodes/OgnMultisequence.ogn
{ "Multisequence": { "version": 1, "description": [ "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." ], "uiName": "Sequence", "c...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/nodes/OgnFlipFlop.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/OgnSyncGate.ogn
{ "SyncGate": { "version": 1, "description": ["This node triggers when all its input executions have triggered successively at the same synchronization value."], "uiName": "Sync Gate", "categories": ["graph:action","flowControl"], "scheduling": ["threadsafe"], "inputs...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/nodes/ActionNodeCommon.h
// Copyright (c) 2021-2021, 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/OgnSyncGate.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/OgnOnObjectChange.ogn
{ "OnObjectChange": { "version": 4, "description": "Executes an output execution pulse when the watched USD Object changes", "uiName": "On USD Object Change", "categories": ["graph:action", "event"], "scheduling": ["threadsafe"], "inputs": { "path": { ...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/nodes/OgnMultigate.ogn
{ "Multigate": { "version": 1, "description": [ "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..." ], "uiName": "Multigate", "categories": ...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/nodes/OgnOnGamepadInput.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/OgnOnImpulseEvent.ogn
{ "OnImpulseEvent": { "version": 2, "description": "Triggers the output execution once when state is set", "uiName": "On Impulse Event", "categories": ["graph:action", "event"], "scheduling": ["compute-on-request", "threadsafe"], "inputs": { "onlyPlayback"...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/nodes/OgnDelay.ogn
{ "Delay": { "version": 1, "description": [ "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." ], ...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/nodes/OgnSwitchToken.ogn
{ "SwitchToken": { "version": 1, "description": [ "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 '...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/nodes/OgnForEach.ogn
{ "ForEach": { "version": 1, "description": [ "Executes the a loop body once for each element in the input array.", "The finished output is executed after all iterations are complete" ], "categories": ["graph:action","flowControl"], "scheduling": ["thr...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/tests/TestOgnBranch.py
import os import omni.kit.test import omni.graph.core as og import omni.graph.core.tests as ogts from omni.graph.core.tests.omnigraph_test_utils import _TestGraphAndNode from omni.graph.core.tests.omnigraph_test_utils import _test_clear_scene from omni.graph.core.tests.omnigraph_test_utils import _test_setup_scene from...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/tests/TestOgnOnStageEvent.py
import os import omni.kit.test import omni.graph.core as og import omni.graph.core.tests as ogts from omni.graph.core.tests.omnigraph_test_utils import _TestGraphAndNode from omni.graph.core.tests.omnigraph_test_utils import _test_clear_scene from omni.graph.core.tests.omnigraph_test_utils import _test_setup_scene from...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/tests/TestOgnSwitchToken.py
import os import omni.kit.test import omni.graph.core as og import omni.graph.core.tests as ogts from omni.graph.core.tests.omnigraph_test_utils import _TestGraphAndNode from omni.graph.core.tests.omnigraph_test_utils import _test_clear_scene from omni.graph.core.tests.omnigraph_test_utils import _test_setup_scene from...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/tests/TestOgnOnVariableChange.py
import os import omni.kit.test import omni.graph.core as og import omni.graph.core.tests as ogts from omni.graph.core.tests.omnigraph_test_utils import _TestGraphAndNode from omni.graph.core.tests.omnigraph_test_utils import _test_clear_scene from omni.graph.core.tests.omnigraph_test_utils import _test_setup_scene from...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/tests/TestOgnGate.py
import os import omni.kit.test import omni.graph.core as og import omni.graph.core.tests as ogts from omni.graph.core.tests.omnigraph_test_utils import _TestGraphAndNode from omni.graph.core.tests.omnigraph_test_utils import _test_clear_scene from omni.graph.core.tests.omnigraph_test_utils import _test_setup_scene from...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/tests/TestOgnDelay.py
import omni.kit.test import omni.graph.core as og import omni.graph.core.tests as ogts import os class TestOgn(ogts.OmniGraphTestCase): async def test_data_access(self): from omni.graph.action.ogn.OgnDelayDatabase import OgnDelayDatabase test_file_name = "OgnDelayTemplate.usda" usd_path =...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/tests/TestOgnOnTick.py
import os import omni.kit.test import omni.graph.core as og import omni.graph.core.tests as ogts from omni.graph.core.tests.omnigraph_test_utils import _TestGraphAndNode from omni.graph.core.tests.omnigraph_test_utils import _test_clear_scene from omni.graph.core.tests.omnigraph_test_utils import _test_setup_scene from...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/tests/TestOgnCounter.py
import omni.kit.test import omni.graph.core as og import omni.graph.core.tests as ogts import os class TestOgn(ogts.OmniGraphTestCase): async def test_generated(self): test_data = [{'inputs': [['inputs:execIn', 1, False]], 'outputs': [['outputs:count', 1, False]], 'state_set': [['state:count', 0, False]]...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/tests/TestOgnOnCustomEvent.py
import os import omni.kit.test import omni.graph.core as og import omni.graph.core.tests as ogts from omni.graph.core.tests.omnigraph_test_utils import _TestGraphAndNode from omni.graph.core.tests.omnigraph_test_utils import _test_clear_scene from omni.graph.core.tests.omnigraph_test_utils import _test_setup_scene from...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/tests/__init__.py
"""====== GENERATED BY omni.graph.tools - DO NOT EDIT ======""" import omni.graph.tools._internal as ogi ogi.import_tests_in_directory(__file__, __name__)
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/tests/TestOgnAddPrimRelationship.py
import os import omni.kit.test import omni.graph.core as og import omni.graph.core.tests as ogts from omni.graph.core.tests.omnigraph_test_utils import _TestGraphAndNode from omni.graph.core.tests.omnigraph_test_utils import _test_clear_scene from omni.graph.core.tests.omnigraph_test_utils import _test_setup_scene from...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/tests/TestOgnSyncGate.py
import os import omni.kit.test import omni.graph.core as og import omni.graph.core.tests as ogts from omni.graph.core.tests.omnigraph_test_utils import _TestGraphAndNode from omni.graph.core.tests.omnigraph_test_utils import _test_clear_scene from omni.graph.core.tests.omnigraph_test_utils import _test_setup_scene from...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/tests/TestOgnForEach.py
import os import omni.kit.test import omni.graph.core as og import omni.graph.core.tests as ogts from omni.graph.core.tests.omnigraph_test_utils import _TestGraphAndNode from omni.graph.core.tests.omnigraph_test_utils import _test_clear_scene from omni.graph.core.tests.omnigraph_test_utils import _test_setup_scene from...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/tests/TestOgnMultisequence.py
import os import omni.kit.test import omni.graph.core as og import omni.graph.core.tests as ogts from omni.graph.core.tests.omnigraph_test_utils import _TestGraphAndNode from omni.graph.core.tests.omnigraph_test_utils import _test_clear_scene from omni.graph.core.tests.omnigraph_test_utils import _test_setup_scene from...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/tests/TestOgnRationalTimeSyncGate.py
import os import omni.kit.test import omni.graph.core as og import omni.graph.core.tests as ogts from omni.graph.core.tests.omnigraph_test_utils import _TestGraphAndNode from omni.graph.core.tests.omnigraph_test_utils import _test_clear_scene from omni.graph.core.tests.omnigraph_test_utils import _test_setup_scene from...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/tests/TestOgnOnClosing.py
import os import omni.kit.test import omni.graph.core as og import omni.graph.core.tests as ogts from omni.graph.core.tests.omnigraph_test_utils import _TestGraphAndNode from omni.graph.core.tests.omnigraph_test_utils import _test_clear_scene from omni.graph.core.tests.omnigraph_test_utils import _test_setup_scene from...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/tests/TestOgnOnMouseInput.py
import os import omni.kit.test import omni.graph.core as og import omni.graph.core.tests as ogts from omni.graph.core.tests.omnigraph_test_utils import _TestGraphAndNode from omni.graph.core.tests.omnigraph_test_utils import _test_clear_scene from omni.graph.core.tests.omnigraph_test_utils import _test_setup_scene from...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/tests/TestOgnOnObjectChange.py
import os import omni.kit.test import omni.graph.core as og import omni.graph.core.tests as ogts from omni.graph.core.tests.omnigraph_test_utils import _TestGraphAndNode from omni.graph.core.tests.omnigraph_test_utils import _test_clear_scene from omni.graph.core.tests.omnigraph_test_utils import _test_setup_scene from...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/tests/TestOgnSetPrimActive.py
import os import omni.kit.test import omni.graph.core as og import omni.graph.core.tests as ogts from omni.graph.core.tests.omnigraph_test_utils import _TestGraphAndNode from omni.graph.core.tests.omnigraph_test_utils import _test_clear_scene from omni.graph.core.tests.omnigraph_test_utils import _test_setup_scene from...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/tests/TestOgnMultigate.py
import os import omni.kit.test import omni.graph.core as og import omni.graph.core.tests as ogts from omni.graph.core.tests.omnigraph_test_utils import _TestGraphAndNode from omni.graph.core.tests.omnigraph_test_utils import _test_clear_scene from omni.graph.core.tests.omnigraph_test_utils import _test_setup_scene from...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/tests/TestOgnOnImpulseEvent.py
import os import omni.kit.test import omni.graph.core as og import omni.graph.core.tests as ogts from omni.graph.core.tests.omnigraph_test_utils import _TestGraphAndNode from omni.graph.core.tests.omnigraph_test_utils import _test_clear_scene from omni.graph.core.tests.omnigraph_test_utils import _test_setup_scene from...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/tests/TestOgnFlipFlop.py
import omni.kit.test import omni.graph.core as og import omni.graph.core.tests as ogts import os class TestOgn(ogts.OmniGraphTestCase): async def test_generated(self): test_data = [{'outputs': [['outputs:a', 0, False], ['outputs:b', 1, False], ['outputs:isA', False, False]]}] test_node = None ...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/tests/TestOgnOnce.py
import os import omni.kit.test import omni.graph.core as og import omni.graph.core.tests as ogts from omni.graph.core.tests.omnigraph_test_utils import _TestGraphAndNode from omni.graph.core.tests.omnigraph_test_utils import _test_clear_scene from omni.graph.core.tests.omnigraph_test_utils import _test_setup_scene from...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/tests/TestOgnSequence.py
import os import omni.kit.test import omni.graph.core as og import omni.graph.core.tests as ogts from omni.graph.core.tests.omnigraph_test_utils import _TestGraphAndNode from omni.graph.core.tests.omnigraph_test_utils import _test_clear_scene from omni.graph.core.tests.omnigraph_test_utils import _test_setup_scene from...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/tests/TestOgnOnLoaded.py
import os import omni.kit.test import omni.graph.core as og import omni.graph.core.tests as ogts from omni.graph.core.tests.omnigraph_test_utils import _TestGraphAndNode from omni.graph.core.tests.omnigraph_test_utils import _test_clear_scene from omni.graph.core.tests.omnigraph_test_utils import _test_setup_scene from...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/tests/TestOgnSendCustomEvent.py
import os import omni.kit.test import omni.graph.core as og import omni.graph.core.tests as ogts from omni.graph.core.tests.omnigraph_test_utils import _TestGraphAndNode from omni.graph.core.tests.omnigraph_test_utils import _test_clear_scene from omni.graph.core.tests.omnigraph_test_utils import _test_setup_scene from...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/tests/TestOgnOnKeyboardInput.py
import os import omni.kit.test import omni.graph.core as og import omni.graph.core.tests as ogts from omni.graph.core.tests.omnigraph_test_utils import _TestGraphAndNode from omni.graph.core.tests.omnigraph_test_utils import _test_clear_scene from omni.graph.core.tests.omnigraph_test_utils import _test_setup_scene from...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/tests/TestOgnForLoop.py
import omni.kit.test import omni.graph.core as og import omni.graph.core.tests as ogts import os class TestOgn(ogts.OmniGraphTestCase): async def test_generated(self): test_data = [{'inputs': [['inputs:start', 1, False], ['inputs:stop', 0, False], ['inputs:step', 1, False]], 'outputs': [['outputs:loopBod...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/tests/TestOgnOnMessageBusEvent.py
import os import omni.kit.test import omni.graph.core as og import omni.graph.core.tests as ogts from omni.graph.core.tests.omnigraph_test_utils import _TestGraphAndNode from omni.graph.core.tests.omnigraph_test_utils import _test_clear_scene from omni.graph.core.tests.omnigraph_test_utils import _test_setup_scene from...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/tests/TestOgnOnPlaybackTick.py
import os import omni.kit.test import omni.graph.core as og import omni.graph.core.tests as ogts from omni.graph.core.tests.omnigraph_test_utils import _TestGraphAndNode from omni.graph.core.tests.omnigraph_test_utils import _test_clear_scene from omni.graph.core.tests.omnigraph_test_utils import _test_setup_scene from...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/tests/usd/OgnSwitchTokenTemplate.usda
#usda 1.0 ( doc ="""Generated from node description file OgnSwitchToken.ogn Contains templates for node types found in that file.""" ) def OmniGraph "TestGraph" { token evaluator:type = "push" int2 fileFormatVersion = (1, 3) token flatCacheBacking = "Shared" token pipelineStage = "pipelineStageSimu...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/tests/usd/OgnGateTemplate.usda
#usda 1.0 ( doc ="""Generated from node description file OgnGate.ogn Contains templates for node types found in that file.""" ) def OmniGraph "TestGraph" { token evaluator:type = "push" int2 fileFormatVersion = (1, 3) token flatCacheBacking = "Shared" token pipelineStage = "pipelineStageSimulation"...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/tests/usd/OgnOnCustomEventTemplate.usda
#usda 1.0 ( doc ="""Generated from node description file OgnOnCustomEvent.ogn Contains templates for node types found in that file.""" ) def OmniGraph "TestGraph" { token evaluator:type = "push" int2 fileFormatVersion = (1, 3) token flatCacheBacking = "Shared" token pipelineStage = "pipelineStageSi...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/tests/usd/OgnOnClosingTemplate.usda
#usda 1.0 ( doc ="""Generated from node description file OgnOnClosing.ogn Contains templates for node types found in that file.""" ) def OmniGraph "TestGraph" { token evaluator:type = "push" int2 fileFormatVersion = (1, 3) token flatCacheBacking = "Shared" token pipelineStage = "pipelineStageSimula...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/tests/usd/OgnOnTickTemplate.usda
#usda 1.0 ( doc ="""Generated from node description file OgnOnTick.ogn Contains templates for node types found in that file.""" ) def OmniGraph "TestGraph" { token evaluator:type = "push" int2 fileFormatVersion = (1, 3) token flatCacheBacking = "Shared" token pipelineStage = "pipelineStageSimulatio...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/tests/usd/OgnSyncGateTemplate.usda
#usda 1.0 ( doc ="""Generated from node description file OgnSyncGate.ogn Contains templates for node types found in that file.""" ) def OmniGraph "TestGraph" { token evaluator:type = "push" int2 fileFormatVersion = (1, 3) token flatCacheBacking = "Shared" token pipelineStage = "pipelineStageSimulat...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/tests/usd/OgnOnLoadedTemplate.usda
#usda 1.0 ( doc ="""Generated from node description file OgnOnLoaded.ogn Contains templates for node types found in that file.""" ) def OmniGraph "TestGraph" { token evaluator:type = "push" int2 fileFormatVersion = (1, 3) token flatCacheBacking = "Shared" token pipelineStage = "pipelineStageSimulat...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/tests/usd/OgnFlipFlopTemplate.usda
#usda 1.0 ( doc ="""Generated from node description file OgnFlipFlop.ogn Contains templates for node types found in that file.""" ) def OmniGraph "TestGraph" { token evaluator:type = "push" int2 fileFormatVersion = (1, 3) token flatCacheBacking = "Shared" token pipelineStage = "pipelineStageSimulat...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/tests/usd/OgnSendCustomEventTemplate.usda
#usda 1.0 ( doc ="""Generated from node description file OgnSendCustomEvent.ogn Contains templates for node types found in that file.""" ) def OmniGraph "TestGraph" { token evaluator:type = "push" int2 fileFormatVersion = (1, 3) token flatCacheBacking = "Shared" token pipelineStage = "pipelineStage...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/tests/usd/OgnOnObjectChangeTemplate.usda
#usda 1.0 ( doc ="""Generated from node description file OgnOnObjectChange.ogn Contains templates for node types found in that file.""" ) def OmniGraph "TestGraph" { token evaluator:type = "push" int2 fileFormatVersion = (1, 3) token flatCacheBacking = "Shared" token pipelineStage = "pipelineStageS...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/tests/usd/OgnOnImpulseEventTemplate.usda
#usda 1.0 ( doc ="""Generated from node description file OgnOnImpulseEvent.ogn Contains templates for node types found in that file.""" ) def OmniGraph "TestGraph" { token evaluator:type = "push" int2 fileFormatVersion = (1, 3) token flatCacheBacking = "Shared" token pipelineStage = "pipelineStageS...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/tests/usd/OgnOnGamepadInputTemplate.usda
#usda 1.0 ( doc ="""Generated from node description file OgnOnGamepadInput.ogn Contains templates for node types found in that file.""" ) def OmniGraph "TestGraph" { token evaluator:type = "push" int2 fileFormatVersion = (1, 3) token flatCacheBacking = "Shared" token pipelineStage = "pipelineStageS...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/tests/usd/OgnSequenceTemplate.usda
#usda 1.0 ( doc ="""Generated from node description file OgnSequence.ogn Contains templates for node types found in that file.""" ) def OmniGraph "TestGraph" { token evaluator:type = "push" int2 fileFormatVersion = (1, 3) token flatCacheBacking = "Shared" token pipelineStage = "pipelineStageSimulat...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/tests/usd/OgnMultigateTemplate.usda
#usda 1.0 ( doc ="""Generated from node description file OgnMultigate.ogn Contains templates for node types found in that file.""" ) def OmniGraph "TestGraph" { token evaluator:type = "push" int2 fileFormatVersion = (1, 3) token flatCacheBacking = "Shared" token pipelineStage = "pipelineStageSimula...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/tests/usd/OgnOnKeyboardInputTemplate.usda
#usda 1.0 ( doc ="""Generated from node description file OgnOnKeyboardInput.ogn Contains templates for node types found in that file.""" ) def OmniGraph "TestGraph" { token evaluator:type = "push" int2 fileFormatVersion = (1, 3) token flatCacheBacking = "Shared" token pipelineStage = "pipelineStage...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/tests/usd/OgnForEachTemplate.usda
#usda 1.0 ( doc ="""Generated from node description file OgnForEach.ogn Contains templates for node types found in that file.""" ) def OmniGraph "TestGraph" { token evaluator:type = "push" int2 fileFormatVersion = (1, 3) token flatCacheBacking = "Shared" token pipelineStage = "pipelineStageSimulati...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/tests/usd/OgnSetPrimActiveTemplate.usda
#usda 1.0 ( doc ="""Generated from node description file OgnSetPrimActive.ogn Contains templates for node types found in that file.""" ) def OmniGraph "TestGraph" { token evaluator:type = "push" int2 fileFormatVersion = (1, 3) token flatCacheBacking = "Shared" token pipelineStage = "pipelineStageSi...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/tests/usd/OgnMultisequenceTemplate.usda
#usda 1.0 ( doc ="""Generated from node description file OgnMultisequence.ogn Contains templates for node types found in that file.""" ) def OmniGraph "TestGraph" { token evaluator:type = "push" int2 fileFormatVersion = (1, 3) token flatCacheBacking = "Shared" token pipelineStage = "pipelineStageSi...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/tests/usd/OgnDelayTemplate.usda
#usda 1.0 ( doc ="""Generated from node description file OgnDelay.ogn Contains templates for node types found in that file.""" ) def OmniGraph "TestGraph" { token evaluator:type = "push" int2 fileFormatVersion = (1, 3) token flatCacheBacking = "Shared" token pipelineStage = "pipelineStageSimulation...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/tests/usd/OgnOnPlaybackTickTemplate.usda
#usda 1.0 ( doc ="""Generated from node description file OgnOnPlaybackTick.ogn Contains templates for node types found in that file.""" ) def OmniGraph "TestGraph" { token evaluator:type = "push" int2 fileFormatVersion = (1, 3) token flatCacheBacking = "Shared" token pipelineStage = "pipelineStageS...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/tests/usd/OgnAddPrimRelationshipTemplate.usda
#usda 1.0 ( doc ="""Generated from node description file OgnAddPrimRelationship.ogn Contains templates for node types found in that file.""" ) def OmniGraph "TestGraph" { token evaluator:type = "push" int2 fileFormatVersion = (1, 3) token flatCacheBacking = "Shared" token pipelineStage = "pipelineS...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/tests/usd/OgnForLoopTemplate.usda
#usda 1.0 ( doc ="""Generated from node description file OgnForLoop.ogn Contains templates for node types found in that file.""" ) def OmniGraph "TestGraph" { token evaluator:type = "push" int2 fileFormatVersion = (1, 3) token flatCacheBacking = "Shared" token pipelineStage = "pipelineStageSimulati...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/tests/usd/OgnBranchTemplate.usda
#usda 1.0 ( doc ="""Generated from node description file OgnBranch.ogn Contains templates for node types found in that file.""" ) def OmniGraph "TestGraph" { token evaluator:type = "push" int2 fileFormatVersion = (1, 3) token flatCacheBacking = "Shared" token pipelineStage = "pipelineStageSimulatio...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/tests/usd/OgnOnStageEventTemplate.usda
#usda 1.0 ( doc ="""Generated from node description file OgnOnStageEvent.ogn Contains templates for node types found in that file.""" ) def OmniGraph "TestGraph" { token evaluator:type = "push" int2 fileFormatVersion = (1, 3) token flatCacheBacking = "Shared" token pipelineStage = "pipelineStageSim...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/tests/usd/OgnCounterTemplate.usda
#usda 1.0 ( doc ="""Generated from node description file OgnCounter.ogn Contains templates for node types found in that file.""" ) def OmniGraph "TestGraph" { token evaluator:type = "push" int2 fileFormatVersion = (1, 3) token flatCacheBacking = "Shared" token pipelineStage = "pipelineStageSimulati...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/tests/usd/OgnOnMouseInputTemplate.usda
#usda 1.0 ( doc ="""Generated from node description file OgnOnMouseInput.ogn Contains templates for node types found in that file.""" ) def OmniGraph "TestGraph" { token evaluator:type = "push" int2 fileFormatVersion = (1, 3) token flatCacheBacking = "Shared" token pipelineStage = "pipelineStageSim...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/ogn/tests/usd/OgnOnceTemplate.usda
#usda 1.0 ( doc ="""Generated from node description file OgnOnce.ogn Contains templates for node types found in that file.""" ) def OmniGraph "TestGraph" { token evaluator:type = "push" int2 fileFormatVersion = (1, 3) token flatCacheBacking = "Shared" token pipelineStage = "pipelineStageSimulation"...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/_impl/extension.py
"""Support required by the Carbonite extension loader""" from contextlib import suppress import omni.ext from ..bindings._omni_graph_action import acquire_interface as _acquire_interface # noqa: PLE0402 from ..bindings._omni_graph_action import release_interface as _release_interface # noqa: PLE0402 class _Public...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/_impl/templates/template_omni.graph.action.Multisequence.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 rel...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/_impl/templates/template_omni.graph.action.Multigate.py
# Copyright (c) 2021, 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 rel...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/_impl/templates/template_omni.graph.action.SwitchToken.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 rel...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/tests/test_action_graph_nodes_02.py
"""Action Graph Node Tests, Part 2""" import random from functools import partial from typing import List import carb import carb.input import numpy as np import omni.client import omni.graph.core as og import omni.graph.core.tests as ogts import omni.graph.tools.ogn as ogn import omni.kit.app import omni.kit.test fr...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/tests/test_evaluation2.py
"""Action Graph Evaluation Tests Part 2""" import json import omni.graph.core as og import omni.graph.core.tests as ogts import omni.usd # ====================================================================== class TestActionGraphEvaluation2(ogts.OmniGraphTestCase): """Tests action graph evaluator functionality...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/tests/test_action_graph_nodes_03.py
"""Action Graph Node Tests, Part 3""" import random from functools import partial import carb.input import omni.graph.core as og import omni.graph.core.tests as ogts import omni.kit.app import omni.kit.test import omni.usd from carb.input import MouseEventType from omni.graph.core import ThreadsafetyTestUtils from px...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/tests/test_actiongraph.py
"""Basic tests of the action graph""" import omni.client import omni.graph.core as og import omni.graph.core.tests as ogts import omni.kit.test import omni.usd from pxr import Gf, Sdf # ====================================================================== class TestActionGraphNodes(ogts.OmniGraphTestCase): """Te...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/tests/test_action_graph_compounds.py
"""Action Graph with Compounds""" import carb.events import omni.graph.core as og import omni.graph.core._unstable as ogu import omni.graph.core.tests as ogts import omni.kit.app # ====================================================================== class TestActionGraphCompounds(ogts.OmniGraphTestCase): """Te...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/tests/test_api.py
"""Testing the stability of the API in this module""" import omni.graph.action as oga import omni.graph.core.tests as ogts from omni.graph.tools.tests.internal_utils import _check_module_api_consistency, _check_public_api_contents # ====================================================================== class _TestOmn...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/tests/__init__.py
"""There is no public API to this module.""" __all__ = [] scan_for_test_modules = True """The presence of this object causes the test runner to automatically scan the directory for unit test cases"""
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/tests/test_action_graph_evaluation_02.py
"""Action Graph Evaluation Tests, Part 2""" from enum import Enum, auto import omni.graph.core as og import omni.graph.core.tests as ogts import omni.kit.test import omni.usd from omni.graph.action import get_interface from pxr import Gf # ====================================================================== class...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/tests/test_action_graph_nodes_01.py
"""Action Graph Node Tests, Part 1""" import time import carb import omni.graph.core as og import omni.graph.core.tests as ogts import omni.kit.app import omni.kit.test import omni.usd from omni.graph.core import ThreadsafetyTestUtils from pxr import Gf, OmniGraphSchemaTools, Sdf, Vt # ==============================...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/tests/test_action_graph_evaluation_01.py
"""Action Graph Evaluation Tests, Part 1""" import asyncio import json import omni.graph.core as og import omni.graph.core.tests as ogts import omni.kit.test import omni.usd # ====================================================================== class TestActionGraphEvaluation(ogts.OmniGraphTestCase): """Tests ...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/tests/test_on_stage_event_node.py
"""Basic tests of the OnStageEvent node""" import omni.client import omni.graph.core as og import omni.graph.core.tests as ogts import omni.graph.tools.ogn as ogn import omni.kit.app import omni.kit.test import omni.usd from pxr import Sdf # ====================================================================== clas...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/tests/test_evaluation.py
"""Action Graph Evaluation Tests""" import asyncio import carb.events import omni.client import omni.graph.core as og import omni.graph.core.tests as ogts import omni.kit.test import omni.usd # ====================================================================== class TestActionGraphEvaluation(ogts.OmniGraphTestCa...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/tests/data/load_with_type_resol.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 50000) double radius = 500 } dictionary Perspective = { double3 position = (500, 500, 500) double3 ...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/tests/data/TestActionFanIn.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 50000) double radius = 500 } dictionary Perspective = { double3 position = (500, 500, 500) double3 ...
omniverse-code/kit/exts/omni.graph.action/omni/graph/action/tests/data/TestOnStageEventNode_v2.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 50000) double radius = 500 } dictionary Perspective = { double3 position = (500, 500, 500) double3 ...
omniverse-code/kit/exts/omni.graph.action/docs/ui_nodes.md
(ogn_ui_nodes)= # UI Nodes You may have seen the `omni.ui` extension that gives you the ability to create user interface elements through Python scripting. OmniGraph provides some nodes that can be used to do the same thing through an action graph. These nodes provide an interface to the equivalent `omni.ui` script ...
omniverse-code/kit/exts/omni.graph.action/docs/CHANGELOG.md
# Changelog All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] ## [1.31.1] - 2023-02-10 ### Fixed - Add tests for...
omniverse-code/kit/exts/omni.graph.action/docs/README.md
# OmniGraph Action Graphs ## Introduction to Action Graphs Provides visual-programming graphs to help designers bring their omniverse creations to life. Action Graphs are triggered by events and can execute nodes which modify the stage. ## The Action Graph Extension Contains nodes which work only with Action Graph...
omniverse-code/kit/exts/omni.graph.action/docs/index.rst
.. _ogn_omni_graph_action: OmniGraph Action Graph ###################### .. tabularcolumns:: |L|R| .. csv-table:: :width: 100% **Extension**: omni.graph.action,**Documentation Generated**: |today| .. toctree:: :maxdepth: 1 CHANGELOG This extension is a collection of functionality required for OmniGr...
omniverse-code/kit/exts/omni.graph.action/docs/Overview.md
(ogn_omni_graph_action_overview)= ```{csv-table} **Extension**: omni.graph.action,**Documentation Generated**: {sub-ref}`today` ``` This extension is a collection of functionality required for OmniGraph Action Graphs. ```{note} Action Graphs are in an early development state ``` # Action Graph Overview For a hands...
omniverse-code/kit/exts/omni.kit.renderer.cuda_interop/omni/kit/renderer/cuda_interop_test/__init__.py
from ._renderer_cuda_interop_test import * # Cached interface instance pointer def get_renderer_cuda_interop_test_interface() -> IRendererCudaInteropTest: if not hasattr(get_renderer_cuda_interop_test_interface, "renderer_cuda_interop_test"): get_renderer_cuda_interop_test_interface.renderer_cuda_interop_...
omniverse-code/kit/exts/omni.kit.renderer.cuda_interop/omni/kit/renderer/cuda_interop/__init__.py
from ._renderer_cuda_interop import * # Cached interface instance pointer def get_renderer_cuda_interop_interface() -> IRendererCudaInterop: """Returns cached :class:`omni.kit.renderer.IRendererCudaInterop` interface""" if not hasattr(get_renderer_cuda_interop_interface, "renderer_cuda_interop"): get...
omniverse-code/kit/exts/omni.kit.renderer.cuda_interop/omni/kit/renderer/cuda_interop/_renderer_cuda_interop.pyi
""" This module contains bindings to C++ omni::kit::renderer::IRendererCudaInterop interface, core C++ part of Omniverse Kit. >>> import omni.kit.renderer.cuda_interop >>> e = omni.kit.renderer.cuda_interop.get_renderer_cuda_interop_interface() """ from __future__ import annotations imp...
omniverse-code/kit/exts/omni.kit.renderer.cuda_interop/omni/kit/renderer/cuda_interop/tests/__init__.py
from .test_renderer_cuda_interop import *
omniverse-code/kit/exts/omni.kit.renderer.cuda_interop/omni/kit/renderer/cuda_interop/tests/test_renderer_cuda_interop.py
import inspect import pathlib import carb import carb.settings import carb.tokens import omni.kit.app import omni.kit.test import omni.kit.renderer.cuda_interop_test class RendererCudaInteropTest(omni.kit.test.AsyncTestCase): async def setUp(self): self._settings = carb.settings.acquire_settings_interfa...
omniverse-code/kit/exts/omni.kit.window.audioplayer/PACKAGE-LICENSES/omni.kit.window.audioplayer-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.kit.window.audioplayer/config/extension.toml
[package] title = "Kit Audio Player Window" category = "Audio" version = "1.0.1" description = "A simple audio player window" detailedDescription = """This adds a window for playing audio assets. This also adds an option to the content browser to play audio assets in this audio player. """ preview_image = "data/preview...