file_path
stringlengths
32
153
content
stringlengths
0
3.14M
omniverse-code/kit/exts/omni.kit.example.toolbar_button/docs/CHANGELOG.md
# Changelog The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ## [0.1.0] - 2020-07-23 ### Added - Initial implementation
omniverse-code/kit/exts/omni.kit.example.toolbar_button/docs/index.rst
omni.kit.example.toolbar_button ############################### Omniverse Kit Toolbar Button Example .. toctree:: :maxdepth: 1 CHANGELOG
omniverse-code/kit/exts/omni.kit.window.preferences/PACKAGE-LICENSES/omni.kit.window.preferences-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.preferences/config/extension.toml
[package] # Semantic Versioning is used: https://semver.org/ version = "1.3.8" 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 = "Pref...
omniverse-code/kit/exts/omni.kit.window.preferences/omni/kit/window/preferences/__init__.py
from .scripts import *
omniverse-code/kit/exts/omni.kit.window.preferences/omni/kit/window/preferences/scripts/preference_builder.py
import asyncio import os from typing import List, Callable, Union from typing import List, Callable, Union import carb import omni.kit.menu.utils import omni.ui as ui from omni.ui import color as cl from functools import partial from omni.kit.widget.settings import create_setting_widget, create_setting_widget_combo, Se...
omniverse-code/kit/exts/omni.kit.window.preferences/omni/kit/window/preferences/scripts/__init__.py
from .preferences_window import *
omniverse-code/kit/exts/omni.kit.window.preferences/omni/kit/window/preferences/scripts/preferences_window.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.preferences/omni/kit/window/preferences/scripts/material_config_widget.py
import os import carb.settings import omni.kit.notification_manager as nm import omni.ui as ui from omni.ui import color as cl from . import material_config_utils class EditableListItem(ui.AbstractItem): def __init__(self, text): super().__init__() self.name_model = ui.SimpleStringModel(text) ...
omniverse-code/kit/exts/omni.kit.window.preferences/omni/kit/window/preferences/scripts/preferences_actions.py
import omni.kit.actions.core def register_actions(extension_id, cls, get_self_fn): action_registry = omni.kit.actions.core.get_action_registry() actions_tag = "Window Preferences Actions" # actions action_registry.register_action( extension_id, "show_preferences_window", get_s...
omniverse-code/kit/exts/omni.kit.window.preferences/omni/kit/window/preferences/scripts/material_path_widget.py
import os import pathlib import carb import carb.settings import omni.kit.notification_manager as nm import omni.ui as ui from omni.kit.window.filepicker import FilePickerDialog from omni.mdl import pymdlsdk from omni.ui import color as cl from . import material_config_utils from . material_config_widget import Edita...
omniverse-code/kit/exts/omni.kit.window.preferences/omni/kit/window/preferences/scripts/material_config_utils.py
import os import posixpath # import platform import pathlib import copy import toml import carb import carb.settings SETTING_BUILTINALLOWLIST = "/materialConfig/materialGraph/builtInAllowList" SETTING_BUILTINBLOCKLIST = "/materialConfig/materialGraph/builtInBlockList" SETTING_USERALLOWLIST = "/materialConfig/materi...
omniverse-code/kit/exts/omni.kit.window.preferences/omni/kit/window/preferences/scripts/pages/screenshot_page.py
import os import carb.settings import omni.ui as ui from ..preferences_window import PreferenceBuilder, show_file_importer, PERSISTENT_SETTINGS_PREFIX, SettingType class ScreenshotPreferences(PreferenceBuilder): def __init__(self): super().__init__("Capture Screenshot") self._settings = carb.sett...
omniverse-code/kit/exts/omni.kit.window.preferences/omni/kit/window/preferences/scripts/pages/globals.py
import asyncio import carb.settings import omni.kit.app import omni.ui as ui from ..preferences_window import PreferenceBuilder class GlobalPreferences(PreferenceBuilder): def __init__(self): super().__init__("") def build(self): async def on_ok_clicked(dialog): import sys ...
omniverse-code/kit/exts/omni.kit.window.preferences/omni/kit/window/preferences/scripts/pages/thumbnail_generation_page.py
import carb.settings import omni.ui as ui from ..preferences_window import PreferenceBuilder, show_file_importer, PERSISTENT_SETTINGS_PREFIX, SettingType MDL_PREFERENCES_PATH = "/exts/omni.kit.window.preferences/show_thumbnail_generation_mdl" def set_default_usd_thumbnail_generator_settings(): """Setup default ...
omniverse-code/kit/exts/omni.kit.window.preferences/omni/kit/window/preferences/scripts/pages/usdskel_page.py
import carb.settings import omni.kit.app from functools import partial from ..preferences_window import PreferenceBuilder, PERSISTENT_SETTINGS_PREFIX, SettingType class UsdSkelPreferences(PreferenceBuilder): def __init__(self): super().__init__("UsdSkel") self._update_setting = {} settin...
omniverse-code/kit/exts/omni.kit.window.preferences/omni/kit/window/preferences/scripts/pages/material_page.py
import carb.settings import omni.kit.app import omni.ui as ui from ..preferences_window import PreferenceBuilder, PERSISTENT_SETTINGS_PREFIX, SettingType from ..material_config_utils import SETTING_USERALLOWLIST, SETTING_USERBLOCKLIST from ..material_config_widget import EditableListWidget from ..material_path_widget i...
omniverse-code/kit/exts/omni.kit.window.preferences/omni/kit/window/preferences/scripts/pages/resourcemonitor_page.py
import omni.ui as ui from ..preferences_window import PreferenceBuilder, SettingType class ResourceMonitorPreferences(PreferenceBuilder): def __init__(self): super().__init__("Resource Monitor") def build(self): """ Resource Monitor """ try: import omni.resourcemonitor as ...
omniverse-code/kit/exts/omni.kit.window.preferences/omni/kit/window/preferences/scripts/pages/datetime_format_page.py
import carb.settings import omni.kit.app from functools import partial from ..preferences_window import PreferenceBuilder, PERSISTENT_SETTINGS_PREFIX class DatetimeFormatPreferences(PreferenceBuilder): def __init__(self): super().__init__("Datetime Format") settings = carb.settings.get_settings()...
omniverse-code/kit/exts/omni.kit.window.preferences/omni/kit/window/preferences/scripts/pages/developer_page.py
import carb import carb.settings import omni.kit.app import omni.ui as ui from ..preferences_window import PreferenceBuilder, SettingType, PERSISTENT_SETTINGS_PREFIX from typing import Any from typing import Dict from typing import Optional THREAD_SYNC_PRESETS = [ ( "No Pacing", { "/ap...
omniverse-code/kit/exts/omni.kit.window.preferences/omni/kit/window/preferences/scripts/pages/stage_page.py
import carb.settings import omni.kit.app from functools import partial from ..preferences_window import PreferenceBuilder, PERSISTENT_SETTINGS_PREFIX, SettingType class StagePreferences(PreferenceBuilder): def __init__(self): super().__init__("Stage") self._update_setting = {} settings =...
omniverse-code/kit/exts/omni.kit.window.preferences/omni/kit/window/preferences/scripts/pages/rendering_page.py
import carb import carb.settings import omni.kit.app import omni.ui as ui from ..preferences_window import PreferenceBuilder, SettingType, PERSISTENT_SETTINGS_PREFIX from .developer_page import THREAD_SYNC_PRESETS # kit-extensions/kit-scene extension access this from typing import Any from typing import Dict from typin...
omniverse-code/kit/exts/omni.kit.window.preferences/omni/kit/window/preferences/scripts/pages/audio_page.py
import os import platform import carb.settings import omni.kit.app import omni.kit.audiodeviceenum import omni.usd.audio from functools import partial import omni.ui as ui from omni.kit.audiodeviceenum import Direction, SampleType from ..preferences_window import PreferenceBuilder, show_file_importer, PERSISTENT_SETTIN...
omniverse-code/kit/exts/omni.kit.window.preferences/omni/kit/window/preferences/scripts/pages/tagging_page.py
import carb.settings import omni.kit.app from functools import partial import omni.ui as ui from ..preferences_window import PreferenceBuilder, PERSISTENT_SETTINGS_PREFIX, SettingType class TaggingPreferences(PreferenceBuilder): def __init__(self): super().__init__("Tagging") self._showAdvanced =...
omniverse-code/kit/exts/omni.kit.window.preferences/omni/kit/window/preferences/tests/test_material_config.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.window.preferences/omni/kit/window/preferences/tests/test_pages.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.window.preferences/omni/kit/window/preferences/tests/__init__.py
from .test_preferences import * from .test_stage import * from .test_pages import *
omniverse-code/kit/exts/omni.kit.window.preferences/omni/kit/window/preferences/tests/test_preferences.py
import os import unittest import carb import omni.kit.test from omni.kit.window.preferences.scripts.preferences_window import ( PreferenceBuilder, PERSISTENT_SETTINGS_PREFIX, ) class TestPreferencesWindow(omni.kit.test.AsyncTestCase): async def setUp(self): pass async def tearDown(self): ...
omniverse-code/kit/exts/omni.kit.window.preferences/omni/kit/window/preferences/tests/test_material.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.window.preferences/omni/kit/window/preferences/tests/test_stage.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.window.preferences/docs/CHANGELOG.md
# Changelog The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ## [1.3.8] - 2023-01-12 ### Changed - Fixed `create_setting_widget_combo` to support `setting_is_index` - Pages with same name to be grouped into same page ## [1.3.7] - 2022-09-13 ### Changed - Prevented "Material render con...
omniverse-code/kit/exts/omni.kit.window.preferences/docs/index.rst
omni.kit.window.preferences ########################### Preferences Window .. toctree:: :maxdepth: 1 CHANGELOG .. automodule:: omni.kit.window.preferences :platform: Windows-x86_64, Linux-x86_64, Linux-aarch64 :members: :undoc-members: :imported-members:
omniverse-code/kit/exts/omni.kit.window.preferences/data/tests/material.config.carb.toml
[tests] paths = [ "C:/some/project/materials", "omniverse://another/project/materials", "/my/own/materials", ] string = "coffee" float = 24.0 bool = true
omniverse-code/kit/exts/omni.kit.window.preferences/data/tests/material.config.toml
[materialGraph] userAllowList = [ "my_materials", "my_maps", ] userBlockList = [ "foo_materials", "bar_maps", ] [options] noStandardPath = false [searchPaths] local = [ "C:/some/project/materials", "omniverse://another/project/materials", "/my/own/materials", ]
omniverse-code/kit/exts/omni.rtx.tests/PACKAGE-LICENSES/omni.rtx.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/omni.rtx.tests/config/extension.toml
[package] # Semantic Versioning is used: https://semver.org/ version = "0.1.4" # 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 = "RTX tests" description="Extension for RTX ...
omniverse-code/kit/exts/omni.rtx.tests/omni/rtx/tests/test_common.py
## Copyright (c) 2021-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 softw...
omniverse-code/kit/exts/omni.rtx.tests/omni/rtx/tests/test_domelight.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.rtx.tests/omni/rtx/tests/test_material_distilling_toggle.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.rtx.tests/omni/rtx/tests/test_hydra_skel.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.rtx.tests/omni/rtx/tests/test_hydra_light_collections.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.rtx.tests/omni/rtx/tests/test_postprocessing_tonemapper.py
## Copyright (c) 2021-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 softw...
omniverse-code/kit/exts/omni.rtx.tests/omni/rtx/tests/__init__.py
import sys if sys.platform == "win32": from .test_example import TestRtxExample1, TestRtxExample2 from .test_selectionoutline import TestRtxSelectionOutline from .test_hydra_mesh import * from .test_hydra_points import * from .test_hydra_basis_curves import * from .test_hydra_skel import * f...
omniverse-code/kit/exts/omni.rtx.tests/omni/rtx/tests/test_light_toggling.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.rtx.tests/omni/rtx/tests/test_picking.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.rtx.tests/omni/rtx/tests/test_hydra_materials.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.rtx.tests/omni/rtx/tests/test_hydra_basis_curves.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.rtx.tests/omni/rtx/tests/test_hydra_common.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.rtx.tests/omni/rtx/tests/test_hydra_points.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.rtx.tests/omni/rtx/tests/test_hydra_volume.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.rtx.tests/omni/rtx/tests/test_example.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.rtx.tests/omni/rtx/tests/test_usdlux_schema_compat.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.rtx.tests/omni/rtx/tests/test_hydra_mesh.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.rtx.tests/omni/rtx/tests/test_selectionoutline.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.rtx.tests/omni/rtx/tests/test_hydra_scene_delegate_omni_imaging.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.rtx.tests/omni/rtx/tests/test_scenedb.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.rtx.tests/docs/CHANGELOG.md
# CHANGELOG This document records all notable changes to ``omni.rtx.tests`` extension. This project adheres to `Semantic Versioning <https://semver.org/>`. ## [Unreleased] ### Added ### Changed ### Removed ## [0.1.4] - 2022-10-19 ### Changed - Flagged test_light_collection_lightvistoggle as UNSTABLE. ## [0.1.3]...
omniverse-code/kit/exts/omni.rtx.tests/docs/README.md
# The RTX Renderer Test Framework [omni.rtx.tests] This extensions contains python tests for RTX renderer. This tests is based on kit python tests. See `omni.kit.tests` documentation. # How-to run tets There is few ways to run tets. 1) Run script `_build/{build}/{config}/tests-omni.rtx.tests.{bat|sh}` 2) Run `kit`. ...
omniverse-code/kit/exts/omni.rtx.tests/docs/index.rst
omni.rtx.tests ########################### .. toctree:: :maxdepth: 1 CHANGELOG
omniverse-code/kit/exts/omni.rtx.tests/data/usd/bunny.obj.usda
#usda 1.0 ( upAxis = "Y" defaultPrim = "mesh" ) def Mesh "mesh" { uniform bool doubleSided = 1 int[] faceVertexCounts = [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3...
omniverse-code/kit/exts/omni.rtx.tests/data/usd/hydra/nestedScenegraphInstancesOff.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 50000) double radius = 500 } dictionary Perspective = { double3 position = (660.7930685989429, 435.6262857330999, 3...
omniverse-code/kit/exts/omni.rtx.tests/data/usd/hydra/CubeInstance.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.rtx.tests/data/usd/hydra/simpleSphereLightPrefixed.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.rtx.tests/data/usd/hydra/guideRepr.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double radius = 500 double3 target = (0, 0, 0) } dictionary Perspective = { double3 position = (66.06305156595162, 66.06305156595167, 66.0630...
omniverse-code/kit/exts/omni.rtx.tests/data/usd/hydra/CubeWorld.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.rtx.tests/data/usd/hydra/cubeYellow.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (50050.000000000015, -1.1113332476497817e-11, 0) double radius = 500 } dictionary Perspective = { double3 position = (500....
omniverse-code/kit/exts/omni.rtx.tests/data/usd/hydra/cone_sbdv.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...
omniverse-code/kit/exts/omni.rtx.tests/data/usd/hydra/dome_emission_direction.mdl
mdl 1.4; import ::df::*; import ::base::*; import ::math::*; import ::state::*; import ::anno::*; import ::tex::*; export material dome_emission_direction ( uniform color tint = color(1.0), uniform float Intensity=1000 [[ anno::soft_range(float(0.0f), float(1000.0f)) ]], uniform float Exposure=0 ) = let ...
omniverse-code/kit/exts/omni.rtx.tests/data/usd/hydra/LightLinkSimple.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 50000) double radius = 500 } dictionary Perspective = { double3 position = (-450.0435097166573, 417.946004657155, 1...
omniverse-code/kit/exts/omni.rtx.tests/data/usd/hydra/dome_gridspherejulia.mdl
mdl 1.4; import ::df::*; import ::base::*; import ::math::*; import ::state::*; import ::anno::*; import ::tex::*; float2 XYZtoUV(float3 p) { p=math::normalize(p); return float2(math::atan2(p.x,-p.y)/math::acos(-1)*0.5+0.5,math::asin(-p.z)/math::acos(-1)+0.5); } color DrawSphereGrid(float3 p,float2 gridsize...
omniverse-code/kit/exts/omni.rtx.tests/data/usd/hydra/tetmesh_teddy.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (50000.000000000015, -1.1102230246251565e-11, 0) double radius = 500 } dictionary Perspective = { double3 position = (942....
omniverse-code/kit/exts/omni.rtx.tests/data/usd/hydra/torus_mesh.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...
omniverse-code/kit/exts/omni.rtx.tests/data/usd/hydra/cube_ptinst_unpopulated.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double radius = 500 double3 target = (0, 0, 0) } dictionary Perspective = { double3 position = (-10665.572460631078, 1870.128013628236, -1741...
omniverse-code/kit/exts/omni.rtx.tests/data/usd/hydra/empty_xform_mtx.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...
omniverse-code/kit/exts/omni.rtx.tests/data/usd/hydra/Green_Side.mdl
mdl 1.4; import OmniPBR::OmniPBR; import ::tex::gamma_mode; import ::state::normal; export material Green_Side(*) = OmniPBR::OmniPBR( color_constant: color(0.f, 1.f, 0.f), enable_basecolor_texture: false, basecolor_texture: texture_2d(), is_ao: false, AO_map: texture_2d(), reflection_roughnes...
omniverse-code/kit/exts/omni.rtx.tests/data/usd/hydra/nestedScenegraphInstances.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 50000) double radius = 500 } dictionary Perspective = { double3 position = (660.7930685989429, 435.6262857330999, 3...
omniverse-code/kit/exts/omni.rtx.tests/data/usd/hydra/Red_Side.mdl
mdl 1.4; import OmniPBR::OmniPBR; import ::tex::gamma_mode; import ::state::normal; export material Red_Side(*) = OmniPBR::OmniPBR( color_constant: color(1.f, 0.f, 0.f), enable_basecolor_texture: false, basecolor_texture: texture_2d(), is_ao: false, AO_map: texture_2d(), reflection_roughness_...
omniverse-code/kit/exts/omni.rtx.tests/data/usd/hydra/threeCubes.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 50000) double radius = 500 } dictionary Perspective = { double3 position = (630.1805360426509, 475.6632825361468, 3...
omniverse-code/kit/exts/omni.rtx.tests/data/usd/hydra/OmniPBR.mdl
/* * Copyright 1986-2017 NVIDIA Corporation. All rights reserved. ****************************************************************************** MDL MATERIALS ARE PROVIDED PURSUANT TO AN END USER LICENSE AGREEMENT, WHICH WAS ACCEPTED IN ORDER TO GAIN ACCESS TO THIS FILE. IN PARTICULAR, THE MDL MATERIALS ARE ...
omniverse-code/kit/exts/omni.rtx.tests/data/usd/hydra/OM-38291-one_ptinst.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 50000) double radius = 500 } dictionary Perspective = { double3 position = (278.4470808503461, 264.8479133427526, 3...
omniverse-code/kit/exts/omni.rtx.tests/data/usd/hydra/ptinst_unnested_proto.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...
omniverse-code/kit/exts/omni.rtx.tests/data/usd/hydra/OM-26055_scene.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double radius = 500 double3 target = (0, 0, 0) } dictionary Perspective = { double3 position = (874.8390762853918, 760.4581205401474, 1017.54...
omniverse-code/kit/exts/omni.rtx.tests/data/usd/hydra/ref_ptinst_inside_sginst.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.rtx.tests/data/usd/hydra/LightLink.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 50500) double radius = 500 } dictionary Perspective = { double3 position = (337.38153736971776, 570.0650348990841, ...
omniverse-code/kit/exts/omni.rtx.tests/data/usd/hydra/skelcylinder.usda
#usda 1.0 ( defaultPrim = "Root" endTimeCode = 120 startTimeCode = 1 timeCodesPerSecond = 24 upAxis = "Z" customLayerData = { dictionary cameraSettings = { dictionary Perspective = { double3 position = (7.601309856061961, 7.5704013906765235, 12.55710198322356...
omniverse-code/kit/exts/omni.rtx.tests/data/usd/hydra/inheritedPurpose.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...
omniverse-code/kit/exts/omni.rtx.tests/data/usd/hydra/ptinst_inside_sginst.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 50000) double radius = 500 } dictionary Perspective = { double3 position = (778.2586907277156, 740.249061511561, 10...
omniverse-code/kit/exts/omni.rtx.tests/data/usd/hydra/UsdShade.usda
#usda 1.0 ( defaultPrim = "World" endTimeCode = 100 metersPerUnit = 0.009999999776482582 startTimeCode = 0 timeCodesPerSecond = 24 upAxis = "Y" ) def Xform "World" { def DistantLight "defaultLight" ( prepend apiSchemas = ["ShapingAPI"] kind = "model" ) { floa...
omniverse-code/kit/exts/omni.rtx.tests/data/usd/hydra/simpleCubeAncestralXforms.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.rtx.tests/data/usd/hydra/nested_ptinst.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 50000) double radius = 500 } dictionary Perspective = { double3 position = (778.2586907277156, 740.249061511561, 10...
omniverse-code/kit/exts/omni.rtx.tests/data/usd/hydra/OM-26055_geom.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...
omniverse-code/kit/exts/omni.rtx.tests/data/usd/hydra/dome_materials.usda
#usda 1.0 ( defaultPrim = "World" endTimeCode = 100 metersPerUnit = 0.009999999776482582 startTimeCode = 0 timeCodesPerSecond = 24 upAxis = "Y" ) def Xform "World" { def Scope "Looks" { def Material "dome_emission_direction" { token outputs:mdl:displacement.c...
omniverse-code/kit/exts/omni.rtx.tests/data/usd/hydra/skel/skelcylinder_root.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (50002.06181788446, -1.1102688061789144e-11, 0) double radius = 500 } dictionary Perspective = { double3 position = (14.43...
omniverse-code/kit/exts/omni.rtx.tests/data/usd/hydra/skel/skelcylinder_ref.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (50002.06181788446, -1.1102688061789144e-11, 0) double radius = 500 } dictionary Perspective = { double3 position = (14.43...
omniverse-code/kit/exts/omni.rtx.tests/data/usd/hydra/skel/skelcylinder.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (50002.06181788446, -1.1102688061789144e-11, 0) double radius = 500 } dictionary Perspective = { double3 position = (14.43...
omniverse-code/kit/exts/omni.rtx.tests/data/usd/hydra/skel/skelcylinder_material_test.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (50002.06181788446, -1.1102688061789144e-11, 0) double radius = 500 } dictionary Perspective = { double3 position = (17.49...
omniverse-code/kit/exts/omni.rtx.tests/data/usd/hydra/skel/assets/skelcylinder_anim.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (50002.06181788446, -1.1102688061789144e-11, 0) double radius = 500 } dictionary Perspective = { double3 position = (14.43...
omniverse-code/kit/exts/omni.rtx.tests/data/usd/hydra/skel/assets/skelcylinder_anim_flat2.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (50002.06181788446, -1.1102688061789144e-11, 0) double radius = 500 } dictionary Perspective = { double3 position = (14.43...
omniverse-code/kit/exts/omni.rtx.tests/data/usd/hydra/skel/assets/skelcylinder_anim_static.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (50002.06181788446, -1.1102688061789144e-11, 0) double radius = 500 } dictionary Perspective = { double3 position = (14.43...
omniverse-code/kit/exts/omni.rtx.tests/data/usd/hydra/skel/assets/skelcylinder_anim_flat.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (50002.06181788446, -1.1102688061789144e-11, 0) double radius = 500 } dictionary Perspective = { double3 position = (14.43...