file_path
stringlengths
32
153
content
stringlengths
0
3.14M
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/scripts/omnigraph_node_description_editor/change_management.py
from ..._impl.omnigraph_node_description_editor.change_management import * # noqa
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/scripts/omnigraph_node_description_editor/attribute_list_manager.py
from ..._impl.omnigraph_node_description_editor.attribute_list_manager import * # noqa
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/scripts/omnigraph_node_description_editor/memory_type_manager.py
from ..._impl.omnigraph_node_description_editor.memory_type_manager import * # noqa
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/scripts/omnigraph_node_description_editor/node_language_manager.py
from ..._impl.omnigraph_node_description_editor.node_language_manager import * # noqa
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/scripts/omnigraph_node_description_editor/main_model.py
from ..._impl.omnigraph_node_description_editor.main_model import * # noqa
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/scripts/omnigraph_node_description_editor/tests_data_manager.py
from ..._impl.omnigraph_node_description_editor.tests_data_manager import * # noqa
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/scripts/omnigraph_node_description_editor/node_properties.py
from ..._impl.omnigraph_node_description_editor.node_properties import * # noqa
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/scripts/omnigraph_node_description_editor/attribute_properties.py
from ..._impl.omnigraph_node_description_editor.attribute_properties import * # noqa
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/scripts/omnigraph_node_description_editor/attribute_union_type_adder_manager.py
from ..._impl.omnigraph_node_description_editor.attribute_union_type_adder_manager import * # noqa
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/scripts/omnigraph_node_description_editor/extension_info_manager.py
from ..._impl.omnigraph_node_description_editor.extension_info_manager import * # noqa
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/scripts/omnigraph_node_description_editor/main_editor.py
from ..._impl.omnigraph_node_description_editor.main_editor import * # noqa
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/scripts/omnigraph_node_description_editor/test_configurations.py
from ..._impl.omnigraph_node_description_editor.test_configurations import * # noqa
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/scripts/omnigraph_node_description_editor/main_generator.py
from ..._impl.omnigraph_node_description_editor.main_generator import * # noqa
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/scripts/omnigraph_node_description_editor/attribute_base_type_manager.py
from ..._impl.omnigraph_node_description_editor.attribute_base_type_manager import * # noqa
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/scripts/omnigraph_node_description_editor/attribute_tuple_count_manager.py
from ..._impl.omnigraph_node_description_editor.attribute_tuple_count_manager import * # noqa
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/scripts/omnigraph_node_description_editor/file_manager.py
from ..._impl.omnigraph_node_description_editor.file_manager import * # noqa
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/scripts/omnigraph_node_description_editor/ogn_editor_utils.py
from ..._impl.omnigraph_node_description_editor.ogn_editor_utils import * # noqa
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/tests/test_extension_shutdown.py
"""Test cases for extension shutdown""" import omni.graph.core as og import omni.graph.core.tests as ogts import omni.kit # ====================================================================== class TestExtensionShutdown(ogts.OmniGraphTestCase): """Testing for extension shutdown""" # ----------------------...
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/tests/test_api.py
"""Testing the stability of the API in this module""" import omni.graph.core.tests as ogts import omni.graph.ui as ogu from omni.graph.tools.tests.internal_utils import _check_module_api_consistency, _check_public_api_contents # ====================================================================== class _TestOmniGra...
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/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.ui/omni/graph/ui/tests/test_omnigraph_view.py
""" * 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...
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/tests/test_omnigraph_widgets.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/tests/test_omnigraph_property_widget.py
# 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 and rel...
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/tests/test_omnigraph_action.py
""" Tests that verify action UI-dependent nodes """ import unittest import omni.graph.core as og import omni.graph.core.tests as ogts import omni.kit.test import omni.usd from omni.kit.test.teamcity import is_running_in_teamcity from omni.kit.viewport.utility import get_active_viewport from omni.kit.viewport.utility.c...
omniverse-code/kit/exts/omni.graph.ui/omni/graph/ui/tests/test_omnigraph_ui_sanity.py
""" Tests that do basic sanity checks on the OmniGraph UI """ import omni.graph.core as og import omni.graph.core.tests as ogts import omni.graph.tools as ogt import omni.kit.test import omni.usd from carb import log_warn from .._impl.menu import MENU_WINDOWS, Menu from .._impl.omnigraph_node_description_editor.main_e...
omniverse-code/kit/exts/omni.graph.ui/docs/prettycons-LICENSE.md
# prettycons License Icons made by prettycons from "https://www.flaticon.com/"
omniverse-code/kit/exts/omni.graph.ui/docs/Pixel_perfect-LICENSE.md
# PixelPerfect License Icons made by Pixel perfect from "https://www.flaticon.com/"
omniverse-code/kit/exts/omni.graph.ui/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). ## [1.24.2] - 2023-02-06 - Fix for test failure ## [1.24.1] - 2022...
omniverse-code/kit/exts/omni.graph.ui/docs/OmniGraphSettingsEditor.rst
.. _omnigraph_settings_editor: OmniGraph Settings Editor ========================= The settings editor provides a method of modifying settings which affect the OmniGraph appearance and evaluation.
omniverse-code/kit/exts/omni.graph.ui/docs/README.md
# OmniGraph UI [omni.graph.ui] OmniGraph is a graph system that provides a compute framework for Omniverse through the use of nodes and graphs. This extension contains some supporting UI-related components and nodes for OmniGraph.
omniverse-code/kit/exts/omni.graph.ui/docs/index.rst
OmniGraph User Interfaces ######################### .. tabularcolumns:: |L|R| .. csv-table:: :width: 100% **Extension**: omni.graph.ui,**Documentation Generated**: |today| While other UI elements allow indirect interaction with the OmniGraph, the ones listed here provide direct manipulation of OmniGraph nodes...
omniverse-code/kit/exts/omni.graph.ui/docs/OmniGraphNodeDescriptionEditor.rst
.. _omnigraph_node_description_editor: OmniGraph Node Description Editor ================================= The node description editor is the user interface to create and edit the code that implements OmniGraph Nodes, as well as providing a method for creating a minimal extension that can be used to bring them into K...
omniverse-code/kit/exts/omni.graph.ui/docs/Overview.md
# OmniGraph User Interfaces ```{csv-table} **Extension**: omni.graph.ui,**Documentation Generated**: {sub-ref}`today` ``` While other UI elements allow indirect interaction with the OmniGraph, the ones listed here provide direct manipulation of OmniGraph nodes, attributes, and connections.
omniverse-code/kit/exts/omni.graph.ui/data/tests/test_variables.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.ui/data/tests/compound_node_test.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.kit.menu.aov/PACKAGE-LICENSES/omni.kit.menu.aov-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.menu.aov/config/extension.toml
[package] # Semantic Versioning is used: https://semver.org/ version = "1.1.3" category = "Internal" # Lists people or organizations that are considered the "authors" of the package. authors = ["NVIDIA"] # The title and description fields are primarily for displaying extension info in UI title = "AOV Menu" descripti...
omniverse-code/kit/exts/omni.kit.menu.aov/omni/kit/menu/aov/__init__.py
from .scripts import *
omniverse-code/kit/exts/omni.kit.menu.aov/omni/kit/menu/aov/scripts/aov_actions.py
import omni.kit.actions.core def register_actions(extension_id, cls): action_registry = omni.kit.actions.core.get_action_registry() actions_tag = "AOV Menu Actions" # actions action_registry.register_action( "omni.kit.menu.aov", "create_single_aov", cls._on_create_single_aov, ...
omniverse-code/kit/exts/omni.kit.menu.aov/omni/kit/menu/aov/scripts/aov.py
import omni.ext import omni.kit.menu.utils import omni.kit.context_menu import omni.kit.commands from omni.kit.menu.utils import MenuItemDescription, MenuItemOrder from pxr import Sdf, Usd, UsdUtils, Gf from .aov_actions import register_actions, deregister_actions class AOVMenuExtension(omni.ext.IExt): def __init...
omniverse-code/kit/exts/omni.kit.menu.aov/omni/kit/menu/aov/scripts/__init__.py
from .aov import *
omniverse-code/kit/exts/omni.kit.menu.aov/omni/kit/menu/aov/tests/aov_tests.py
import sys import re import asyncio import unittest import carb import omni.kit.test import omni.ui as ui from omni.kit import ui_test class WindowStub(): """stub window class for use with WidgetRef & """ def undock(_): pass def focus(_): pass window_stub = WindowStub() class TestMenuAO...
omniverse-code/kit/exts/omni.kit.menu.aov/omni/kit/menu/aov/tests/__init__.py
from .aov_tests import *
omniverse-code/kit/exts/omni.kit.usda_edit/PACKAGE-LICENSES/omni.kit.usda_edit-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.usda_edit/config/extension.toml
[package] title = "USDA Editor" description = "Context menu to edit USD layers as USDA files" authors = ["NVIDIA"] version = "1.1.10" changelog="docs/CHANGELOG.md" preview_image = "data/preview.png" readme = "docs/README.md" icon = "data/icon.png" category = "Internal" feature = true [[python.module]] name = "omni.k...
omniverse-code/kit/exts/omni.kit.usda_edit/omni/kit/usda_edit/content_browser_menu.py
# Copyright (c) 2018-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 an...
omniverse-code/kit/exts/omni.kit.usda_edit/omni/kit/usda_edit/extension_usda.py
# Copyright (c) 2018-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 an...
omniverse-code/kit/exts/omni.kit.usda_edit/omni/kit/usda_edit/layer_watch.py
# Copyright (c) 2018-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 an...
omniverse-code/kit/exts/omni.kit.usda_edit/omni/kit/usda_edit/__init__.py
# Copyright (c) 2018-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 an...
omniverse-code/kit/exts/omni.kit.usda_edit/omni/kit/usda_edit/layers_menu.py
# Copyright (c) 2018-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 an...
omniverse-code/kit/exts/omni.kit.usda_edit/omni/kit/usda_edit/usda_edit_utils.py
# Copyright (c) 2018-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 an...
omniverse-code/kit/exts/omni.kit.usda_edit/omni/kit/usda_edit/editor.py
# Copyright (c) 2018-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 an...
omniverse-code/kit/exts/omni.kit.usda_edit/omni/kit/usda_edit/content_menu.py
# Copyright (c) 2018-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 an...
omniverse-code/kit/exts/omni.kit.usda_edit/omni/kit/usda_edit/tests/__init__.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.kit.usda_edit/omni/kit/usda_edit/tests/usda_test.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 a...
omniverse-code/kit/exts/omni.kit.usda_edit/docs/CHANGELOG.md
# Changelog This document records all notable changes to ``omni.kit.usda_edit`` extension. ## [1.1.10] - 2022-02-02 ### Changed - Removed explicit pip dependency requirement on `watchdog`. It's now pre-bundled with Kit SDK. ## [1.1.9] - 2021-12-22 ### Fixed - content_browser context menu is now destroyed when content...
omniverse-code/kit/exts/omni.kit.usda_edit/docs/README.md
# USDA Editor [omni.kit.usda_edit] The tool to view end edit USD layers in a text editor. Convert a USD file to the USD ASCII format in a temporary location and run an editor on it. After saving the editor, the edited file will be converted back to the original format and reload the corresponding layer in Kit, invoki...
omniverse-code/kit/exts/omni.usd.config/omni/usd_config/extension.py
import os from glob import glob from pathlib import Path import carb import carb.dictionary import carb.settings import omni.ext import omni.kit.app from omni.mtlx import get_mtlx_stdlib_search_path ENABLE_NESTED_GPRIMS_SETTINGS_PATH = "/usd/enableNestedGprims" DISABLE_CAMERA_ADAPTER_SETTINGS_PATH = "/usd/disableCam...
omniverse-code/kit/exts/omni.usd.config/omni/usd_config/__init__.py
from .extension import *
omniverse-code/kit/exts/omni.mdl.usd_converter/PACKAGE-LICENSES/omni.mdl.usd_converter-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.mdl.usd_converter/config/extension.toml
[package] # Semantic Versioning is used: https://semver.org/ version = "1.0.0" # Lists people or organizations that are considered the "authors" of the package. authors = ["NVIDIA"] # The title and description fields are primarily for displaying extension info in UI title = "MDL to USD converter" description="MDL to ...
omniverse-code/kit/exts/omni.mdl.usd_converter/omni/mdl/usd_converter/__init__.py
from .usd_converter import *
omniverse-code/kit/exts/omni.mdl.usd_converter/omni/mdl/usd_converter/usd_converter.py
# ***************************************************************************** # Copyright 2021 NVIDIA Corporation. All rights reserved. # ***************************************************************************** import omni.ext import carb import os import shutil import tempfile import carb.settings from omni.m...
omniverse-code/kit/exts/omni.mdl.usd_converter/omni/mdl/usd_converter/mdl_usd.py
#***************************************************************************** # Copyright 2022 NVIDIA Corporation. All rights reserved. #***************************************************************************** import sys import os import gc import platform import traceback from enum import Enum from pxr import U...
omniverse-code/kit/exts/omni.mdl.usd_converter/omni/mdl/usd_converter/tests/test_usd_converter.py
# NOTE: # omni.kit.test - std python's unittest module with additional wrapping to add suport for async/await tests # For most things refer to unittest docs: https://docs.python.org/3/library/unittest.html import omni.kit.test # Import extension python module we are testing with absolute import path, as if we are ...
omniverse-code/kit/exts/omni.mdl.usd_converter/omni/mdl/usd_converter/tests/__init__.py
from .test_usd_converter import *
omniverse-code/kit/exts/omni.mdl.usd_converter/omni/mdl/usd_converter/tests/data/mdl/nvidia/sdk_examples/tutorials.mdl
/****************************************************************************** * Copyright 2022 NVIDIA Corporation. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * Redistributions of s...
omniverse-code/kit/exts/omni.mdl.usd_converter/omni/mdl/usd_converter/tests/data/mdl/test/test_types.mdl
/****************************************************************************** * Copyright 1986, 2017 NVIDIA Corporation. All rights reserved. ******************************************************************************/ /* THE MDL MATERIALS ARE PROVIDED PURSUANT TO AN END USER LICENSE AGREEMENT, WHICH WAS ACCEPT...
omniverse-code/kit/exts/omni.mdl.usd_converter/omni/mdl/usd_converter/tests/data/usd/scene.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 50000) double radius = 500 } dictionary Perspective = { double3 position = (-81.16798659180053, 83.21013327845546, ...
omniverse-code/kit/exts/omni.mdl.usd_converter/omni/mdl/usd_converter/tests/data/usd/tutorials.usda
#usda 1.0 ( "MDL to USD conversion" defaultPrim = "blinker_material" ) def Shader "example_struct" { uniform token info:implementationSource = "sourceAsset" uniform asset info:mdl:sourceAsset = @nvidia/sdk_examples/tutorials.mdl@ uniform token info:mdl:sourceAsset:subIdentifier = "example_struct" ...
omniverse-code/kit/exts/omni.mdl.usd_converter/docs/CHANGELOG.md
# CHANGELOG This document records all notable changes to ``omni.mdl.usd_converter`` extension. This project adheres to `Semantic Versioning <https://semver.org/>`_. ## [1.0.1] - 2021-09-20 ### Changed - Added interface for USD to MDL conversion ## [1.0.0] - 2021-05-12 ### Added - Initial extensions 2.0
omniverse-code/kit/exts/omni.mdl.usd_converter/docs/README.md
# Python Extension for MDL <--> USD conversions [omni.mdl.usd_converter] This is an extension for MDL to USD and for USD to MDL conversions. ## Interfaces ### mdl_to_usd(moduleName: str, searchPath: str = None, targetFolder: str = MDL_AUTOGEN_PATH, targetFilename: str = None, output: mdl_usd.OutputType = mdl_usd.Out...
omniverse-code/kit/exts/omni.mdl.usd_converter/docs/index.rst
omni.mdl.usd_converter ########################### .. toctree:: :maxdepth: 1 CHANGELOG
omniverse-code/kit/exts/omni.kit.menu.file/PACKAGE-LICENSES/omni.kit.menu.file-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.menu.file/config/extension.toml
[package] # Semantic Versioning is used: https://semver.org/ version = "1.1.4" category = "Internal" # Lists people or organizations that are considered the "authors" of the package. authors = ["NVIDIA"] # The title and description fields are primarily for displaying extension info in UI title = "File Menu" descript...
omniverse-code/kit/exts/omni.kit.menu.file/omni/kit/menu/file/__init__.py
from .scripts import *
omniverse-code/kit/exts/omni.kit.menu.file/omni/kit/menu/file/scripts/__init__.py
from .file import *
omniverse-code/kit/exts/omni.kit.menu.file/omni/kit/menu/file/scripts/file_actions.py
import carb import omni.usd import omni.kit.window.file import omni.kit.actions.core def post_notification(message: str, info: bool = False, duration: int = 3): try: import omni.kit.notification_manager as nm if info: type = nm.NotificationStatus.INFO else: type = n...
omniverse-code/kit/exts/omni.kit.menu.file/omni/kit/menu/file/scripts/file.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 a...
omniverse-code/kit/exts/omni.kit.menu.file/omni/kit/menu/file/tests/test_recent_menu.py
import carb import omni.kit.test import omni.kit.helper.file_utils as file_utils from omni.kit import ui_test from .. import get_instance from omni.kit.window.file_importer.test_helper import FileImporterTestHelper class TestMenuFileRecents(omni.kit.test.AsyncTestCase): # Before running each test async def s...
omniverse-code/kit/exts/omni.kit.menu.file/omni/kit/menu/file/tests/__init__.py
from .file_tests import * from .test_recent_menu import *
omniverse-code/kit/exts/omni.kit.menu.file/omni/kit/menu/file/tests/test_func_templates.py
import asyncio import carb import omni.usd import omni.ui as ui from omni.kit import ui_test from omni.kit.menu.utils import MenuItemDescription, MenuLayout async def file_test_func_file_new_from_stage_template_empty(tester, menu_item: MenuItemDescription): stage = omni.usd.get_context().get_stage() layer_na...
omniverse-code/kit/exts/omni.kit.menu.file/omni/kit/menu/file/tests/test_func_media.py
import os import shutil import tempfile import asyncio import carb import omni.usd import omni.ui as ui from omni.kit import ui_test from omni.kit.menu.utils import MenuItemDescription, MenuLayout from omni.kit.window.file_importer.test_helper import FileImporterTestHelper from omni.kit.window.file_exporter.test_helper...
omniverse-code/kit/exts/omni.kit.menu.file/omni/kit/menu/file/tests/test_func_payload.py
import asyncio import carb import omni.usd import omni.ui as ui from omni.kit import ui_test from omni.kit.menu.utils import MenuItemDescription, MenuLayout async def file_test_func_file_add_reference(tester, menu_item: MenuItemDescription): from carb.input import KeyboardInput menu_widget = ui_test.get_menu...
omniverse-code/kit/exts/omni.kit.menu.file/omni/kit/menu/file/tests/file_tests.py
import sys import re import asyncio import carb import omni.kit.test import omni.kit.helper.file_utils as file_utils from .test_func_media import * from .test_func_payload import * from .test_func_templates import * from .test_recent_menu import test_file_recent_menu_current_stage class TestMenuFile(omni.kit.test.Asy...
omniverse-code/kit/exts/omni.kit.menu.file/docs/CHANGELOG.md
# Changelog The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ## [1.1.4] - 2023-01-18 ### Changes - Cancel update task after stage closing. ## [1.1.3] - 2022-11-01 ### Changes - Restored failing test & fixed ## [1.1.2] - 2022-11-01 ### Changes - Remove failing test ## [1.1.1] - 2022-...
omniverse-code/kit/exts/omni.kit.menu.file/docs/index.rst
omni.kit.menu.file ########################### File Menu .. toctree:: :maxdepth: 1 CHANGELOG
omniverse-code/kit/exts/omni.kit.menu.file/data/tests/4Lights.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 50000) double radius = 500 } dictionary Perspective = { double3 position = (641.3717781423547, 641.3717781423395, 6...
omniverse-code/kit/exts/omni.kit.menu.file/data/tests/sphere.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 50000) double radius = 500 } dictionary Perspective = { double3 position = (500.0000000000001, 500.0000000000001, 4...
omniverse-code/kit/exts/omni.kit.stage.mdl_converter/PACKAGE-LICENSES/omni.kit.stage.mdl_converter-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.stage.mdl_converter/config/extension.toml
[package] version = "1.0.1" authors = ["NVIDIA"] title = "USD Material MDL Export" description="The ability to export USD Material to MDL" readme = "docs/README.md" repository = "" category = "USD" feature = true keywords = ["usd", "mdl", "export", "stage"] changelog="docs/CHANGELOG.md" preview_image = "data/preview.p...
omniverse-code/kit/exts/omni.kit.stage.mdl_converter/omni/kit/stage/mdl_converter/stage_mdl_converter_extension.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.kit.stage.mdl_converter/omni/kit/stage/mdl_converter/__init__.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.kit.stage.mdl_converter/omni/kit/stage/mdl_converter/tests/__init__.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.kit.stage.mdl_converter/omni/kit/stage/mdl_converter/tests/test_mdl_converter.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.kit.stage.mdl_converter/docs/CHANGELOG.md
# CHANGELOG The ability to export USD Material to MDL. ## [1.0.1] - 2022-05-31 - Changed "Export Selected" to "Save Selected" ## [1.0.0] - 2022-02-10 ### Added
omniverse-code/kit/exts/omni.kit.stage.mdl_converter/docs/README.md
# USD Material MDL Export. This extension adds a context menu item "Export to MDL" to the stage window. It shows when right-clicking a (single) selected material node. When the new menu item is chosen, the user is prompted for a destination MDL filename. The selected USD material is then converted to an MDL material a...
omniverse-code/kit/exts/omni.kit.stage.mdl_converter/docs/index.rst
omni.kit.stage.mdl_converter ############################ .. toctree:: :maxdepth: 1 CHANGELOG
omniverse-code/kit/exts/omni.kit.capture/PACKAGE-LICENSES/omni.kit.capture-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.capture/config/extension.toml
[package] category = "Rendering" changelog = "docs/CHANGELOG.md" description = "An extension to capture Kit viewport into images and videos." icon = "data/icon.svg" preview_image = "data/preview.png" readme = "docs/README.md" title = "Kit Image and Video Capture" version = "0.5.1" [dependencies] "omni.usd" = {} "omni...