file_path
stringlengths
32
153
content
stringlengths
0
3.14M
omniverse-code/kit/exts/omni.kit.capture/omni/kit/capture/capture_progress.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.capture/omni/kit/capture/extension.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.capture/omni/kit/capture/video_generation.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.capture/omni/kit/capture/__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.capture/omni/kit/capture/capture_options.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.capture/omni/kit/capture/helper.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.capture/omni/kit/capture/singleton.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.capture/omni/kit/capture/tests/__init__.py
from .test_capture_options import TestCaptureOptions # from .test_capture_hdr import TestCaptureHdr
omniverse-code/kit/exts/omni.kit.capture/omni/kit/capture/tests/test_capture_hdr.py
from typing import Type import os.path import omni.kit.test import carb import carb.settings import carb.tokens import pathlib import omni.kit.capture.capture_options as _capture_options from omni.kit.viewport.utility import get_active_viewport, capture_viewport_to_file, create_viewport_window OUTPUTS_DIR = omni.kit....
omniverse-code/kit/exts/omni.kit.capture/omni/kit/capture/tests/test_capture_options.py
from typing import Type import omni.kit.test import omni.kit.capture.capture_options as _capture_options class TestCaptureOptions(omni.kit.test.AsyncTestCase): async def test_capture_options_serialisation(self): options = _capture_options.CaptureOptions() data_dict = options.to_dict() s...
omniverse-code/kit/exts/omni.kit.capture/docs/CHANGELOG.md
# Changelog The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ## [0.5.1] - 2022-06-22 ### Changed - Add declaration of deprecation: this extension has been replaced with omni.kit.capture.viewport will be removed in future releases. ## [0.5.0] - 2022-05-23 ### Changes - Support legacy a...
omniverse-code/kit/exts/omni.kit.capture/docs/README.md
# Omniverse Kit Image and Video Capture Extension to handle the capturing and recording of the viewport
omniverse-code/kit/exts/omni.kit.window.splash_close_example/PACKAGE-LICENSES/omni.kit.window.splash_close_example-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.splash_close_example/config/extension.toml
[package] version = "0.2.0" category = "Internal" [core] # Load as late as possible order = 10000 [dependencies] "omni.kit.window.splash" = { optional = true } [[python.module]] name = "omni.kit.window.splash_close_example" [[test]] waiver = "Simple example extension" # OM-48132
omniverse-code/kit/exts/omni.kit.window.splash_close_example/omni/kit/window/splash_close_example/extension.py
import carb import omni.ext class SplashCloseExtension(omni.ext.IExt): def on_startup(self): try: import omni.splash splash_iface = omni.splash.acquire_splash_screen_interface() except (ImportError, ModuleNotFoundError): splash_iface = None if not spla...
omniverse-code/kit/exts/omni.kit.window.splash_close_example/omni/kit/window/splash_close_example/__init__.py
from .extension import *
omniverse-code/kit/exts/omni.kit.window.splash_close_example/docs/index.rst
omni.kit.window.splash_close_example: omni.kit.window.stats ############################################################ Window to display omni.stats
omniverse-code/kit/exts/omni.kit.property.light/PACKAGE-LICENSES/omni.kit.property.light-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.property.light/config/extension.toml
[package] # Semantic Versioning is used: https://semver.org/ version = "1.0.6" category = "Internal" feature = true # Lists people or organizations that are considered the "authors" of the package. authors = ["NVIDIA"] # The title and description fields are primarly for displaying extension info in UI title = "Light...
omniverse-code/kit/exts/omni.kit.property.light/omni/kit/property/light/__init__.py
from .scripts import *
omniverse-code/kit/exts/omni.kit.property.light/omni/kit/property/light/scripts/light_properties.py
import os import carb import omni.ext from pathlib import Path from pxr import Sdf, UsdLux, Usd TEST_DATA_PATH = "" class LightPropertyExtension(omni.ext.IExt): def __init__(self): self._registered = False super().__init__() def on_startup(self, ext_id): self._register_widget() ...
omniverse-code/kit/exts/omni.kit.property.light/omni/kit/property/light/scripts/__init__.py
from .light_properties import *
omniverse-code/kit/exts/omni.kit.property.light/omni/kit/property/light/scripts/prim_light_widget.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 rel...
omniverse-code/kit/exts/omni.kit.property.light/omni/kit/property/light/tests/__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.property.light/omni/kit/property/light/tests/test_light.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.property.light/omni/kit/property/light/tests/test_drag_drop_HDRI_property.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.property.light/docs/CHANGELOG.md
# Changelog The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ## [1.0.6] - 2022-07-25 ### Changes - Refactored unittests to make use of content_browser test helpers ## [1.0.5] - 2022-01-10 ### Changes - Updated Shadow Link & Light Link. Now has include/exclude ## [1.0.4] - 2021-02-19 ...
omniverse-code/kit/exts/omni.kit.property.light/docs/README.md
# omni.kit.property.light ## Introduction Property window extensions are for viewing and editing Usd Prim Attributes ## This extension supports editing of these Usd Types; - UsdLux.CylinderLight - UsdLux.DiskLight - UsdLux.DistantLight - UsdLux.DomeLight - UsdLux.GeometryLight - UsdLux.RectLight - UsdLux.SphereLigh...
omniverse-code/kit/exts/omni.kit.property.light/docs/index.rst
omni.kit.property.light ########################### Property Light Values .. toctree:: :maxdepth: 1 CHANGELOG
omniverse-code/kit/exts/omni.kit.property.light/data/tests/light_test.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double radius = 500 double3 target = (0, 0, 0) } dictionary Perspective = { double3 position = (269597.88249153644, 269547.8824915365, 269597...
omniverse-code/kit/exts/omni.kit.property.light/data/tests/dome_light.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.audiodeviceenum/PACKAGE-LICENSES/omni.kit.audiodeviceenum-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.audiodeviceenum/config/extension.toml
[package] title = "Kit Audio Device Enumerator" category = "Audio" feature = true version = "1.0.0" description = "An audio device enumeration API which is available from python and C++" authors = ["NVIDIA"] keywords = ["audio", "device"] [dependencies] "carb.audio" = {} [[native.plugin]] path = "bin/*.plugin" [[pyt...
omniverse-code/kit/exts/omni.kit.audiodeviceenum/omni/kit/audiodeviceenum/__init__.py
""" This module contains bindings to the C++ omni::audio::IAudioDeviceEnum interface. This provides functionality for enumerating available audio devices and collecting some basic information on each one. Sound devices attached to the system may change at any point due to user ...
omniverse-code/kit/exts/omni.kit.audiodeviceenum/omni/kit/audiodeviceenum/_audio.pyi
""" This module contains bindings to the C++ omni::audio::IAudioDeviceEnum interface. This provides functionality for enumerating available audio devices and collecting some basic information on each one. Sound devices attached to the system may change at any point due to user ...
omniverse-code/kit/exts/omni.kit.audiodeviceenum/omni/kit/audiodeviceenum/_audiodeviceenum.pyi
""" This module contains bindings to the C++ omni::audio::IAudioDeviceEnum interface. This provides functionality for enumerating available audio devices and collecting some basic information on each one. Sound devices attached to the system may change at any point due to user ...
omniverse-code/kit/exts/omni.kit.audiodeviceenum/omni/kit/audiodeviceenum/tests/test_device.py
import omni.kit.test import omni.kit.audiodeviceenum def get_name_from_sample_type(sample_type): # pragma: no cover if sample_type == omni.kit.audiodeviceenum.SampleType.UNKNOWN: return "UNKNOWN" if sample_type == omni.kit.audiodeviceenum.SampleType.PCM_SIGNED_INTEGER: return "INT PCM" ...
omniverse-code/kit/exts/omni.kit.audiodeviceenum/omni/kit/audiodeviceenum/tests/__init__.py
from .test_device import * # pragma: no cover
omniverse-code/kit/exts/omni.kit.window.cursor/PACKAGE-LICENSES/omni.kit.window.cursor-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.cursor/config/extension.toml
[package] # Semantic Versioning is used: https://semver.org/ version = "1.1.1" # 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 = "Window Cursor Extension" description="Exte...
omniverse-code/kit/exts/omni.kit.window.cursor/omni/kit/window/cursor/cursor.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 rel...
omniverse-code/kit/exts/omni.kit.window.cursor/omni/kit/window/cursor/__init__.py
from .cursor import *
omniverse-code/kit/exts/omni.kit.window.cursor/omni/kit/window/cursor/tests/tests.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.window.cursor/omni/kit/window/cursor/tests/__init__.py
from .tests import *
omniverse-code/kit/exts/omni.kit.window.cursor/docs/CHANGELOG.md
# CHANGELOG This document records all notable changes to ``omni.kit.window.cursor`` extension. This project adheres to `Semantic Versioning <https://semver.org/>`. ## [1.1.1] - 2022-09-26 ### Changed - Store weakly referenced proxy to extension object. - Handle possiblity of lower level API failure better. - Return ...
omniverse-code/kit/exts/omni.kit.window.cursor/docs/README.md
# Cursor Extension [omni.kit.window.cursor] This is an extension to manager cursor shape.
omniverse-code/kit/exts/omni.kit.window.cursor/docs/index.rst
omni.kit.window.cursor ########################### .. toctree:: :maxdepth: 1 CHANGELOG
omniverse-code/kit/exts/omni.kit.widget.live/PACKAGE-LICENSES/omni.kit.widget.live-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.widget.live/config/extension.toml
[package] version = "2.0.3" title = "Kit Live Mode Control Widget" category = "Internal" changelog = "docs/CHANGELOG.md" feature = true keywords = ["live", "session"] authors = ["NVIDIA"] repository = "" [dependencies] "omni.usd" = {} "omni.client" = {} "omni.ui" = {} "omni.kit.usd.layers" = {} "omni.kit.menu.utils" =...
omniverse-code/kit/exts/omni.kit.widget.live/omni/kit/widget/live/cache_state_menu.py
import asyncio import aiohttp import carb import os import toml import time import omni.client import webbrowser from omni.kit.menu.utils import MenuItemDescription, MenuAlignment from omni import ui from typing import Union from .style import Styles class CacheStateDelegate(ui.MenuDelegate): def __init__(self, ...
omniverse-code/kit/exts/omni.kit.widget.live/omni/kit/widget/live/style.py
from .icons import Icons class Styles: CACHE_STATE_ITEM_STYLE = None LIVE_STATE_ITEM_STYLE = None @staticmethod def on_startup(): # It needs to delay initialization of style as icons need to be initialized firstly. Styles.CACHE_STATE_ITEM_STYLE = { "Image::doc": {"image_ur...
omniverse-code/kit/exts/omni.kit.widget.live/omni/kit/widget/live/extension.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.widget.live/omni/kit/widget/live/live_state_menu.py
import carb import omni.usd import omni.ui as ui import omni.kit.usd.layers as layers import omni.kit.widget.live_session_management as lsm from functools import partial from omni.kit.menu.utils import MenuItemDescription, MenuAlignment from omni.ui import color as cl from typing import Union from .style import Styles...
omniverse-code/kit/exts/omni.kit.widget.live/omni/kit/widget/live/__init__.py
from .extension import OmniLiveWidgetExtension
omniverse-code/kit/exts/omni.kit.widget.live/omni/kit/widget/live/icons.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.widget.live/omni/kit/widget/live/tests/base.py
import carb def enable_server_tests(): settings = carb.settings.get_settings() return settings.get_as_bool("/exts/omni.kit.widget.live/enable_server_tests")
omniverse-code/kit/exts/omni.kit.widget.live/omni/kit/widget/live/tests/test_live_widget.py
import omni.kit.test from pathlib import Path import omni.usd import omni.client import omni.kit.app import omni.kit.usd.layers as layers import omni.kit.clipboard from omni.ui.tests.test_base import OmniUiTest from pxr import Usd, Sdf from omni.kit.usd.layers.tests.mock_utils import MockLiveSyncingApi, join_new_simul...
omniverse-code/kit/exts/omni.kit.widget.live/omni/kit/widget/live/tests/__init__.py
from .test_live_widget import TestLiveWidget
omniverse-code/kit/exts/omni.kit.widget.live/docs/CHANGELOG.md
# Changelog The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ## [2.0.3] - 2022-09-29 - Use new omni.kit.usd.layers interfaces. ## [2.0.2] - 2022-08-30 ### Changes - Show menu options for join. ## [2.0.1] - 2022-07-19 ### Changes - Show app name for user in the live session. ## [2.0....
omniverse-code/kit/exts/omni.kit.widget.live/docs/index.rst
omni.kit.widget.live #################### Omniverse Kit Live Mode Control Widget
omniverse-code/kit/exts/omni.kit.viewport.ready/PACKAGE-LICENSES/omni.kit.viewport.ready-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.viewport.ready/config/extension.toml
[package] # Semantic Versioning is used: https://semver.org/ version = "1.0.2" # Lists people or organizations that are considered the "authors" of the package. authors = ["NVIDIA"] # The title and description fields are primarly for displaying extension info in UI title = "Viewport Ready" description="Extension to i...
omniverse-code/kit/exts/omni.kit.viewport.ready/omni/kit/viewport/ready/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.viewport.ready/omni/kit/viewport/ready/__init__.py
from .extension import ViewportReadyExtension
omniverse-code/kit/exts/omni.kit.viewport.ready/omni/kit/viewport/ready/viewport_ready.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.viewport.ready/omni/kit/viewport/ready/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 a...
omniverse-code/kit/exts/omni.kit.viewport.ready/docs/CHANGELOG.md
# CHANGELOG This document records all notable changes to ``omni.kit.viewport.ready`` extension. This project adheres to `Semantic Versioning <https://semver.org/>`_. ## [1.0.2] - 2022-10-28 ### Fixed - Possibility that RTX has sent a ready event before omni.ui has called the build_fn callback. ### Added - Setting to ...
omniverse-code/kit/exts/omni.kit.viewport.ready/docs/README.md
# Viewport Ready extension [omni.kit.viewport.ready] Utility extension to place a message (or omni.ui objects) in the Viewport until a rendered frame has been delivered.
omniverse-code/kit/exts/omni.kit.viewport.ready/docs/index.rst
omni.kit.viewport.ready ########################### Viewport Ready .. toctree:: :maxdepth: 1 README CHANGELOG .. automodule:: omni.kit.viewport.ready :platform: Windows-x86_64, Linux-x86_64 :members: :undoc-members: :show-inheritance: :imported-members:
omniverse-code/kit/exts/omni.kit.viewport.ready/docs/Overview.md
# Overview
omniverse-code/kit/exts/omni.volume_nodes/ogn/docs/SaveVDB.rst
.. _omni_volume_SaveVDB_1: .. _omni_volume_SaveVDB: .. ================================================================================ .. THIS PAGE IS AUTO-GENERATED. DO NOT MANUALLY EDIT. .. ================================================================================ :orphan: .. meta:: :title: Save VDB ...
omniverse-code/kit/exts/omni.volume_nodes/ogn/docs/LoadVDB.rst
.. _omni_volume_LoadVDB_1: .. _omni_volume_LoadVDB: .. ================================================================================ .. THIS PAGE IS AUTO-GENERATED. DO NOT MANUALLY EDIT. .. ================================================================================ :orphan: .. meta:: :title: Load VDB ...
omniverse-code/kit/exts/omni.volume_nodes/omni/volume_nodes/ogn/LoadVDBDatabase.py
"""Support for simplified access to data on nodes of type omni.volume.LoadVDB Loads a VDB from file and puts it in a memory buffer. """ import numpy import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools.ogn as ogn class LoadVDBDatabase(og.Database): """Helper clas...
omniverse-code/kit/exts/omni.volume_nodes/omni/volume_nodes/ogn/SaveVDBDatabase.py
"""Support for simplified access to data on nodes of type omni.volume.SaveVDB Saves a VDB from file and puts it in a memory buffer. """ import numpy import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools.ogn as ogn class SaveVDBDatabase(og.Database): """Helper clas...
omniverse-code/kit/exts/usdrt.gf.tests/PACKAGE-LICENSES/usdrt.gf.tests-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/usdrt.gf.tests/usdrt/gf/tests/testGfRect.py
#!/pxrpythonsubst # # Copyright 2016 Pixar # # Licensed under the Apache License, Version 2.0 (the "Apache License") # with the following modification; you may not use this file except in # compliance with the Apache License and the following modification to it: # Section 6. Trademarks. is deleted and replaced with: # ...
omniverse-code/kit/exts/usdrt.gf.tests/usdrt/gf/tests/test_gf_quat_extras.py
__copyright__ = "Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved." __license__ = """ 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...
omniverse-code/kit/exts/usdrt.gf.tests/usdrt/gf/tests/testGfVec.py
# Copyright 2016 Pixar # # Licensed under the Apache License, Version 2.0 (the "Apache License") # with the following modification; you may not use this file except in # compliance with the Apache License and the following modification to it: # Section 6. Trademarks. is deleted and replaced with: # # 6. Trademarks. Thi...
omniverse-code/kit/exts/usdrt.gf.tests/usdrt/gf/tests/test_gf_vec_extras.py
__copyright__ = "Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved." __license__ = """ 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...
omniverse-code/kit/exts/usdrt.gf.tests/usdrt/gf/tests/__init__.py
__copyright__ = "Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved." __license__ = """ 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...
omniverse-code/kit/exts/usdrt.gf.tests/usdrt/gf/tests/testGfMath.py
#!/pxrpythonsubst # # Copyright 2016 Pixar # # Licensed under the Apache License, Version 2.0 (the "Apache License") # with the following modification; you may not use this file except in # compliance with the Apache License and the following modification to it: # Section 6. Trademarks. is deleted and replaced with: # ...
omniverse-code/kit/exts/usdrt.gf.tests/usdrt/gf/tests/test_gf_matrix_extras.py
__copyright__ = "Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved." __license__ = """ 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...
omniverse-code/kit/exts/usdrt.gf.tests/usdrt/gf/tests/testGfMatrix.py
# Copyright 2016 Pixar # # Licensed under the Apache License, Version 2.0 (the "Apache License") # with the following modification; you may not use this file except in # compliance with the Apache License and the following modification to it: # Section 6. Trademarks. is deleted and replaced with: # # 6. Trademarks. Thi...
omniverse-code/kit/exts/usdrt.gf.tests/usdrt/gf/tests/test_gf_range_extras.py
__copyright__ = "Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved." __license__ = """ 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...
omniverse-code/kit/exts/usdrt.gf.tests/usdrt/gf/tests/testGfRange.py
#!/pxrpythonsubst # # Copyright 2016 Pixar # # Licensed under the Apache License, Version 2.0 (the "Apache License") # with the following modification; you may not use this file except in # compliance with the Apache License and the following modification to it: # Section 6. Trademarks. is deleted and replaced with: # ...
omniverse-code/kit/exts/usdrt.gf.tests/usdrt/gf/tests/testGfQuat.py
# Copyright 2016 Pixar # # Licensed under the Apache License, Version 2.0 (the "Apache License") # with the following modification; you may not use this file except in # compliance with the Apache License and the following modification to it: # Section 6. Trademarks. is deleted and replaced with: # # 6. Trademarks. Thi...
omniverse-code/kit/exts/usdrt.gf.tests/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 = "usdrt.Gf tests" description="Tests for usd...
omniverse-code/kit/exts/omni.kit.property.audio/PACKAGE-LICENSES/omni.kit.property.audio-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.property.audio/config/extension.toml
[package] # Semantic Versioning is used: https://semver.org/ version = "1.0.6" category = "Internal" # Lists people or organizations that are considered the "authors" of the package. authors = ["NVIDIA"] # The title and description fields are primarly for displaying extension info in UI title = "Audio Property Widge...
omniverse-code/kit/exts/omni.kit.property.audio/omni/kit/property/audio/__init__.py
from .scripts import *
omniverse-code/kit/exts/omni.kit.property.audio/omni/kit/property/audio/scripts/audio_properties.py
import os import carb import omni.ext from pathlib import Path from .audio_settings_widget import AudioSettingsWidget from pxr import Sdf, OmniAudioSchema, UsdMedia TEST_DATA_PATH = "" class AudioPropertyExtension(omni.ext.IExt): def __init__(self): self._registered = False super().__init__() ...
omniverse-code/kit/exts/omni.kit.property.audio/omni/kit/property/audio/scripts/__init__.py
from .audio_properties import *
omniverse-code/kit/exts/omni.kit.property.audio/omni/kit/property/audio/scripts/audio_settings_widget.py
# Copyright (c) 2020-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 an...
omniverse-code/kit/exts/omni.kit.property.audio/omni/kit/property/audio/tests/test_audio.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.property.audio/omni/kit/property/audio/tests/__init__.py
from .test_audio import * from .test_layer_audio import *
omniverse-code/kit/exts/omni.kit.property.audio/omni/kit/property/audio/tests/test_layer_audio.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.property.audio/docs/CHANGELOG.md
# Changelog The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ## [1.0.6] - 2022-08-17 ### Changes - Updated golden image due to SdfAssetPath widget change. ## [1.0.5] - 2021-07-16 ### Changes - Fixed audio active listener tooltip color ## [1.0.4] - 2021-02-16 ### Changes - Added UI im...
omniverse-code/kit/exts/omni.kit.property.audio/docs/README.md
# omni.kit.property.audio ## Introduction Property window extensions are for viewing and editing Usd Prim Attributes ## This extension supports editing of these Usd Types; - UsdMedia.SpatialAudio - AudioSchema.Sound - AudioSchema.Listener
omniverse-code/kit/exts/omni.kit.property.audio/docs/index.rst
omni.kit.property.audio ########################### Property Audio Values .. toctree:: :maxdepth: 1 CHANGELOG
omniverse-code/kit/exts/omni.kit.property.audio/data/tests/audio_test.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double radius = 500 double3 target = (0, 0, 0) } dictionary Perspective = { double3 position = (500.0000000000001, 500.0000000000001, 499.999...