file_path
stringlengths
32
153
content
stringlengths
0
3.14M
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/ogn/nodes/OgnOnWidgetClicked.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.ui/omni/graph/ui/ogn/nodes/CameraState.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.ui/omni/graph/ui/ogn/nodes/OgnOnViewportPressed.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.ui/omni/graph/ui/ogn/nodes/OgnGetActiveViewportCamera.py
""" This is the implementation of the OGN node defined in OgnGetActiveViewportCamera.ogn """ from omni.kit.viewport.utility import get_viewport_window_camera_string class OgnGetActiveViewportCamera: """ Gets a viewport's actively bound camera """ @staticmethod def compute(db) -> bool: ""...
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/ogn/nodes/OgnReadViewportScrollState.ogn
{ "ReadViewportScrollState": { "version": 1, "description": [ "Read the state of the last viewport scroll event from the specified viewport.", "Note that viewport mouse events must be enabled on the specified viewport using a SetViewportMode node." ], "uiName"...
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/ogn/nodes/OgnOnNewFrame.ogn
{ "OnNewFrame": { "description": [ "Triggers when there is a new frame available for the given viewport. Note that the graph will", "run asynchronously to the new frame event" ], "version": 1, "uiName": "On New Frame", "language": "Python", "sc...
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/ogn/nodes/UINodeCommon.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.ui/omni/graph/ui/ogn/nodes/OgnReadPickState.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.ui/omni/graph/ui/ogn/nodes/OgnPlacer.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.ui/omni/graph/ui/ogn/nodes/OgnReadWidgetProperty.ogn
{ "ReadWidgetProperty": { "version": 1, "description": ["Read the value of a widget's property (height, tooltip, etc)."], "uiName": "Read Widget Property (BETA)", "language": "Python", "categories": ["graph:action", "ui"], "scheduling": "global-write", "inputs...
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/ogn/nodes/OgnOnViewportScrolled.ogn
{ "OnViewportScrolled": { "version": 1, "description": [ "Event node which fires when a viewport scroll event occurs in the specified viewport.", "Note that viewport mouse events must be enabled on the specified viewport using a SetViewportMode node." ], "uiNa...
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/ogn/nodes/OgnReadWindowSize.ogn
{ "ReadWindowSize": { "version": 1, "description": "Outputs the size of a UI window.", "uiName": "Read Window Size (BETA)", "language": "Python", "categories": ["ui"], "scheduling": "global-read", "inputs": { "name": { "type": "toke...
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/ogn/nodes/ViewportScrollNodeCommon.h
// 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.ui/omni/graph/ui/ogn/nodes/OgnOnWidgetClicked.ogn
{ "OnWidgetClicked": { "version": 1, "description": [ "Event node which fires when a UI widget with the specified identifier is clicked.", "This node should be used in combination with UI creation nodes such as OgnButton." ], "uiName": "On Widget Clicked (BETA...
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/ogn/nodes/OgnVStack.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.ui/omni/graph/ui/ogn/nodes/OgnButton.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.ui/omni/graph/ui/ogn/nodes/OgnOnViewportHovered.ogn
{ "OnViewportHovered": { "version": 1, "description": [ "Event node which fires when the specified viewport is hovered over.", "Note that viewport mouse events must be enabled on the specified viewport using a SetViewportMode node." ], "uiName": "On Viewport H...
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/ogn/nodes/OgnSlider.ogn
{ "Slider": { "version": 1, "description": ["Create a slider widget on the Viewport"], "uiName": "Slider (BETA)", "language": "Python", "categories": ["graph:action", "ui"], "inputs": { "create": { "type": "execution", "desc...
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/ogn/nodes/CameraState.h
// 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.ui/omni/graph/ui/ogn/nodes/ViewportPressManipulator.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.ui/omni/graph/ui/ogn/nodes/OgnGetCameraTarget.cpp
// 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.ui/omni/graph/ui/ogn/nodes/OgnOnViewportDragged.ogn
{ "OnViewportDragged": { "version": 1, "description": [ "Event node which fires when a viewport drag event occurs in the specified viewport.", "Note that viewport mouse events must be enabled on the specified viewport using a SetViewportMode node." ], "uiName"...
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/ogn/nodes/ViewportClickManipulator.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.ui/omni/graph/ui/ogn/nodes/OgnSetViewportMode.ogn
{ "SetViewportMode": { "version": 1, "description": [ "Sets the mode of a specified viewport window to 'Scripted' mode or 'Default' mode when executed.\n", "'Scripted' mode disables default viewport interaction and enables placing UI elements over the viewport.", ...
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/ogn/nodes/OgnOnViewportDragged.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.ui/omni/graph/ui/ogn/nodes/OgnReadPickState.ogn
{ "ReadPickState": { "version": 1, "description": [ "Read the state of the last picking event from the specified viewport.", "Note that picking events must be enabled on the specified viewport using a SetViewportMode node." ], "uiName": "Read Pick State (BETA)...
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/ogn/nodes/OgnWriteWidgetStyle.ogn
{ "WriteWidgetStyle": { "version": 1, "description": [ "Sets a widget's style properties.", "This node should be used in combination with UI creation nodes such as Button." ], "uiName": "Write Widget Style (BETA)", "language": "Python", "catego...
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/ogn/nodes/ViewportHoverManipulator.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.ui/omni/graph/ui/ogn/nodes/OgnReadViewportDragState.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.ui/omni/graph/ui/ogn/nodes/OgnReadWindowSize.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.ui/omni/graph/ui/ogn/nodes/ViewportDragNodeCommon.h
// 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.ui/omni/graph/ui/ogn/nodes/OgnPrintText.py
""" This is the implementation of the OGN node defined in OgnPrintText.ogn """ import time import carb import omni.graph.core as og from omni.kit.viewport.utility import get_viewport_from_window_name, post_viewport_message class OgnOnCustomEventInternalState: """Convenience class for maintaining per-node state i...
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/ogn/nodes/ViewportHoverNodeCommon.h
// 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.ui/omni/graph/ui/ogn/nodes/OgnReadViewportClickState.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.ui/omni/graph/ui/ogn/nodes/OgnSetCameraTarget.cpp
// 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.ui/omni/graph/ui/ogn/nodes/OgnPlacer.ogn
{ "Placer": { "version": 1, "description": [ "Contruct a Placer widget.", "The Placer takes a single child and places it at a given position within it." ], "uiName": "Placer (BETA)", "language": "Python", "categories": ["graph:action", "ui"], ...
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/ogn/nodes/OgnReadViewportHoverState.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.ui/omni/graph/ui/ogn/nodes/OgnOnPicked.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.ui/omni/graph/ui/ogn/nodes/PickingNodeCommon.h
// 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.ui/omni/graph/ui/ogn/nodes/OgnOnViewportClicked.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.ui/omni/graph/ui/ogn/nodes/OgnSpacer.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.ui/omni/graph/ui/ogn/nodes/OgnReadMouseState.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.ui/omni/graph/ui/ogn/nodes/OgnOnViewportClicked.ogn
{ "OnViewportClicked": { "version": 1, "description": [ "Event node which fires when a viewport click event occurs in the specified viewport.", "Note that viewport mouse events must be enabled on the specified viewport using a SetViewportMode node." ], "uiName...
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/ogn/nodes/OgnDrawDebugCurve.ogn
{ "DrawDebugCurve": { "version": 1, "categories": "debug", "description": [ "Given a set of curve points, draw a curve in the viewport"], "language": "Python", "uiName": "Draw Debug Curve", "exclude": ["tests"], "inputs": { "execIn": { ...
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/ogn/nodes/OgnSetActiveViewportCamera.ogn
{ "SetActiveViewportCamera": { "version": 1, "description": "Sets Viewport's actively bound camera to given camera at give path", "language": "Python", "uiName": "Set Active Camera", "exclude": ["tests"], "categories": ["sceneGraph:camera"], "inputs": { ...
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/ogn/nodes/OgnGetActiveViewportCamera.ogn
{ "GetActiveViewportCamera": { "version": 1, "description": "Gets the path of the camera bound to a viewport", "language": "Python", "uiName": "Get Active Camera", "exclude": ["tests"], "categories": ["sceneGraph:camera"], "inputs": { "viewport": {...
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/ogn/nodes/OgnReadWidgetProperty.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.ui/omni/graph/ui/ogn/nodes/OgnOnViewportScrolled.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.ui/omni/graph/ui/ogn/nodes/OgnSpacer.ogn
{ "Spacer": { "version": 1, "description": ["A widget that leaves empty space."], "uiName": "Spacer (BETA)", "language": "Python", "categories": ["graph:action", "ui"], "inputs": { "create": { "type": "execution", "descripti...
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/ogn/nodes/OgnGetCameraPosition.ogn
{ "GetCameraPosition": { "version": 1, "description": "Gets a viewport camera position", "uiName": "Get Camera Position", "exclude": ["tests"], "categories": ["sceneGraph:camera"], "inputs": { "usePath": { "type": "bool", "d...
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/ogn/nodes/OgnReadViewportHoverState.ogn
{ "ReadViewportHoverState": { "version": 1, "description": [ "Read the state of the last viewport hover event from the specified viewport.", "Note that viewport mouse events must be enabled on the specified viewport using a SetViewportMode node." ], "uiName": ...
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/ogn/nodes/OgnSetActiveViewportCamera.py
""" This is the implementation of the OGN node defined in OgnSetActiveViewportCamera.ogn """ import omni.graph.core as og from omni.kit.viewport.utility import get_viewport_from_window_name from pxr import Sdf, UsdGeom class OgnSetActiveViewportCamera: """ Sets a viewport's actively bound camera to a free cam...
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/ogn/nodes/OgnWriteWidgetProperty.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.ui/omni/graph/ui/ogn/tests/TestOgnOnWidgetClicked.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.ui.ogn.OgnOnWidgetClickedDatabase import OgnOnWidgetClickedDatabase test_file_name = "OgnOnWidgetClickedTemplat...
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/ogn/tests/TestOgnOnViewportHovered.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.ui.ogn.OgnOnViewportHoveredDatabase import OgnOnViewportHoveredDatabase test_file_name = "OgnOnViewportHoveredT...
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/ogn/tests/TestOgnReadViewportHoverState.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.ui.ogn.OgnReadViewportHoverStateDatabase import OgnReadViewportHoverStateDatabase test_file_name = "OgnReadView...
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/ogn/tests/TestOgnSetViewportMode.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.ui.ogn.OgnSetViewportModeDatabase import OgnSetViewportModeDatabase test_file_name = "OgnSetViewportModeTemplat...
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/ogn/tests/TestOgnReadWidgetProperty.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.ui.ogn.OgnReadWidgetPropertyDatabase import OgnReadWidgetPropertyDatabase test_file_name = "OgnReadWidgetProper...
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/ogn/tests/TestOgnOnViewportPressed.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.ui.ogn.OgnOnViewportPressedDatabase import OgnOnViewportPressedDatabase test_file_name = "OgnOnViewportPressedT...
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/ogn/tests/TestOgnPlacer.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.ui.ogn.OgnPlacerDatabase import OgnPlacerDatabase test_file_name = "OgnPlacerTemplate.usda" usd_path = ...
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/ogn/tests/TestOgnReadViewportPressState.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.ui.ogn.OgnReadViewportPressStateDatabase import OgnReadViewportPressStateDatabase test_file_name = "OgnReadView...
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/ogn/tests/TestOgnReadViewportClickState.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.ui.ogn.OgnReadViewportClickStateDatabase import OgnReadViewportClickStateDatabase test_file_name = "OgnReadView...
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/ogn/tests/TestOgnSpacer.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.ui.ogn.OgnSpacerDatabase import OgnSpacerDatabase test_file_name = "OgnSpacerTemplate.usda" usd_path = ...
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/ogn/tests/TestOgnComboBox.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.ui.ogn.OgnComboBoxDatabase import OgnComboBoxDatabase test_file_name = "OgnComboBoxTemplate.usda" usd_p...
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/ogn/tests/TestOgnReadMouseState.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.ui.ogn.OgnReadMouseStateDatabase import OgnReadMouseStateDatabase test_file_name = "OgnReadMouseStateTemplate.u...
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/ogn/tests/TestOgnOnViewportDragged.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.ui.ogn.OgnOnViewportDraggedDatabase import OgnOnViewportDraggedDatabase test_file_name = "OgnOnViewportDraggedT...
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/ogn/tests/TestOgnWriteWidgetStyle.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.ui.ogn.OgnWriteWidgetStyleDatabase import OgnWriteWidgetStyleDatabase test_file_name = "OgnWriteWidgetStyleTemp...
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/ogn/tests/__init__.py
"""====== GENERATED BY omni.graph.tools - DO NOT EDIT ======""" import omni.graph.tools as ogt ogt.import_tests_in_directory(__file__, __name__)
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/ogn/tests/TestOgnReadPickState.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.ui.ogn.OgnReadPickStateDatabase import OgnReadPickStateDatabase test_file_name = "OgnReadPickStateTemplate.usda...
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/ogn/tests/TestOgnOnNewFrame.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.ui.ogn.OgnOnNewFrameDatabase import OgnOnNewFrameDatabase test_file_name = "OgnOnNewFrameTemplate.usda" ...
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/ogn/tests/TestOgnReadViewportScrollState.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.ui.ogn.OgnReadViewportScrollStateDatabase import OgnReadViewportScrollStateDatabase test_file_name = "OgnReadVi...
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/ogn/tests/TestOgnOnWidgetValueChanged.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.ui.ogn.OgnOnWidgetValueChangedDatabase import OgnOnWidgetValueChangedDatabase test_file_name = "OgnOnWidgetValu...
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/ogn/tests/TestOgnReadWindowSize.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.ui.ogn.OgnReadWindowSizeDatabase import OgnReadWindowSizeDatabase test_file_name = "OgnReadWindowSizeTemplate.u...
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/ogn/tests/TestOgnVStack.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.ui.ogn.OgnVStackDatabase import OgnVStackDatabase test_file_name = "OgnVStackTemplate.usda" usd_path = ...
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/ogn/tests/TestOgnReadViewportDragState.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.ui.ogn.OgnReadViewportDragStateDatabase import OgnReadViewportDragStateDatabase test_file_name = "OgnReadViewpo...
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/ogn/tests/TestOgnWriteWidgetProperty.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.ui.ogn.OgnWriteWidgetPropertyDatabase import OgnWriteWidgetPropertyDatabase test_file_name = "OgnWriteWidgetPro...
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/ogn/tests/TestOgnOnPicked.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.ui.ogn.OgnOnPickedDatabase import OgnOnPickedDatabase test_file_name = "OgnOnPickedTemplate.usda" usd_p...
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/ogn/tests/TestOgnOnViewportScrolled.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.ui.ogn.OgnOnViewportScrolledDatabase import OgnOnViewportScrolledDatabase test_file_name = "OgnOnViewportScroll...
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/ogn/tests/TestOgnButton.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.ui.ogn.OgnButtonDatabase import OgnButtonDatabase test_file_name = "OgnButtonTemplate.usda" usd_path = ...
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/ogn/tests/TestOgnOnViewportClicked.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.ui.ogn.OgnOnViewportClickedDatabase import OgnOnViewportClickedDatabase test_file_name = "OgnOnViewportClickedT...
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/ogn/tests/TestOgnSlider.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.ui.ogn.OgnSliderDatabase import OgnSliderDatabase test_file_name = "OgnSliderTemplate.usda" usd_path = ...
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/ogn/tests/usd/OgnVStackTemplate.usda
#usda 1.0 ( doc ="""Generated from node description file OgnVStack.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.ui/omni/graph/ui/ogn/tests/usd/OgnOnViewportHoveredTemplate.usda
#usda 1.0 ( doc ="""Generated from node description file OgnOnViewportHovered.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 = "pipelineSta...
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/ogn/tests/usd/OgnReadPickStateTemplate.usda
#usda 1.0 ( doc ="""Generated from node description file OgnReadPickState.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.ui/omni/graph/ui/ogn/tests/usd/OgnSpacerTemplate.usda
#usda 1.0 ( doc ="""Generated from node description file OgnSpacer.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.ui/omni/graph/ui/ogn/tests/usd/OgnGetCameraTargetTemplate.usda
#usda 1.0 ( doc ="""Generated from node description file OgnGetCameraTarget.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.ui/omni/graph/ui/ogn/tests/usd/OgnOnViewportPressedTemplate.usda
#usda 1.0 ( doc ="""Generated from node description file OgnOnViewportPressed.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 = "pipelineSta...
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/ogn/tests/usd/OgnDrawDebugCurveTemplate.usda
#usda 1.0 ( doc ="""Generated from node description file OgnDrawDebugCurve.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.ui/omni/graph/ui/ogn/tests/usd/OgnOnPickedTemplate.usda
#usda 1.0 ( doc ="""Generated from node description file OgnOnPicked.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.ui/omni/graph/ui/ogn/tests/usd/OgnButtonTemplate.usda
#usda 1.0 ( doc ="""Generated from node description file OgnButton.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.ui/omni/graph/ui/ogn/tests/usd/OgnComboBoxTemplate.usda
#usda 1.0 ( doc ="""Generated from node description file OgnComboBox.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.ui/omni/graph/ui/ogn/tests/usd/OgnPlacerTemplate.usda
#usda 1.0 ( doc ="""Generated from node description file OgnPlacer.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.ui/omni/graph/ui/ogn/tests/usd/OgnReadMouseStateTemplate.usda
#usda 1.0 ( doc ="""Generated from node description file OgnReadMouseState.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.ui/omni/graph/ui/ogn/tests/usd/OgnOnNewFrameTemplate.usda
#usda 1.0 ( doc ="""Generated from node description file OgnOnNewFrame.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 = "pipelineStageSimul...
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/ogn/tests/usd/OgnSetCameraPositionTemplate.usda
#usda 1.0 ( doc ="""Generated from node description file OgnSetCameraPosition.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 = "pipelineSta...
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/ogn/tests/usd/OgnGetActiveViewportCameraTemplate.usda
#usda 1.0 ( doc ="""Generated from node description file OgnGetActiveViewportCamera.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 = "pipel...
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/ogn/tests/usd/OgnWriteWidgetPropertyTemplate.usda
#usda 1.0 ( doc ="""Generated from node description file OgnWriteWidgetProperty.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.ui/omni/graph/ui/ogn/tests/usd/OgnReadWidgetPropertyTemplate.usda
#usda 1.0 ( doc ="""Generated from node description file OgnReadWidgetProperty.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 = "pipelineSt...
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/ogn/tests/usd/OgnReadViewportHoverStateTemplate.usda
#usda 1.0 ( doc ="""Generated from node description file OgnReadViewportHoverState.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 = "pipeli...
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/ogn/tests/usd/OgnOnViewportScrolledTemplate.usda
#usda 1.0 ( doc ="""Generated from node description file OgnOnViewportScrolled.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 = "pipelineSt...