file_path
stringlengths
32
153
content
stringlengths
0
3.14M
omniverse-code/kit/exts/omni.kit.commands/omni/kit/commands/__init__.py
"""Commands for Omniverse Kit. :mod:`omni.kit.commands` module is used to register and execute **Commands**. It is built on top of :mod:`omni.kit.undo` module to enable undo/redo operations with **Commands**. **Command** is any class with ``do()`` method and optionally ``undo()`` method. If **Command** has ``undo()``...
omniverse-code/kit/exts/omni.kit.commands/omni/kit/commands/on_change.py
_on_change = set() def subscribe_on_change(on_change): """Subscribe to module change events. Triggered when commands added, executed.""" global _on_change _on_change.add(on_change) def unsubscribe_on_change(on_change): """Unsubscribe to module change events.""" global _on_change _on_change.d...
omniverse-code/kit/exts/omni.kit.commands/omni/kit/commands/command_bridge.py
import carb from ._kit_commands import * from .command import ( Command, execute, register, unregister, get_command_class, ) class CommandBridge: def on_startup(self): self._command_bridge = acquire_command_bridge() def register_cpp_command( extension_id: str, com...
omniverse-code/kit/exts/omni.kit.commands/omni/kit/commands/command.py
import argparse import carb from collections import defaultdict import inspect import re import sys from abc import ABC, abstractmethod from typing import Any, Callable, Dict, List, Tuple, Type from .on_change import _dispatch_changed _commands = defaultdict(dict) LOGGING_ENABLED = True # Callback types PRE_DO_CALLB...
omniverse-code/kit/exts/omni.kit.commands/omni/kit/commands/builtin/__init__.py
from .settings_commands import *
omniverse-code/kit/exts/omni.kit.commands/omni/kit/commands/builtin/settings_commands.py
import carb.settings import omni.kit.commands class ChangeSettingCommand(omni.kit.commands.Command): """ Change setting **Command**. Args: path: Path to the setting to change. value: New value to change to. prev: Previous value to for undo operation. If `None` current value would ...
omniverse-code/kit/exts/omni.kit.commands/omni/kit/commands/tests/__init__.py
from .test_commands import *
omniverse-code/kit/exts/omni.kit.commands/omni/kit/commands/tests/test_commands.py
import carb.settings import omni.kit.test import omni.kit.commands import omni.kit.undo from functools import partial from ._kit_command_tests import * _result = [] _command_tests = None def setUpModule(): global _command_tests _command_tests = acquire_command_tests() def tearDownModule(): global _comm...
omniverse-code/kit/exts/omni.kit.widget.filebrowser/PACKAGE-LICENSES/omni.kit.widget.filebrowser-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.filebrowser/scripts/demo_filebrowser.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.filebrowser/config/extension.toml
[package] title = "Kit FileBrowser Widget" version = "2.3.10" category = "Internal" description = "Filebrowser embeddable widget" authors = ["NVIDIA"] slackids = ["UQY4RMR3N"] repository = "" keywords = ["kit", "ui"] readme = "docs/README.md" changelog = "docs/CHANGELOG.md" preview_image = "data/preview.png" icon = "d...
omniverse-code/kit/exts/omni.kit.widget.filebrowser/omni/kit/widget/filebrowser/zoom_bar.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.widget.filebrowser/omni/kit/widget/filebrowser/date_format_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.widget.filebrowser/omni/kit/widget/filebrowser/view.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.filebrowser/omni/kit/widget/filebrowser/filesystem_model.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.filebrowser/omni/kit/widget/filebrowser/style.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.filebrowser/omni/kit/widget/filebrowser/tree_view.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.filebrowser/omni/kit/widget/filebrowser/grid_view.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.filebrowser/omni/kit/widget/filebrowser/__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.widget.filebrowser/omni/kit/widget/filebrowser/card.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.filebrowser/omni/kit/widget/filebrowser/model.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.filebrowser/omni/kit/widget/filebrowser/thumbnails.py
__all__ = ["MissingThumbnailError", "find_thumbnails_for_files_async", "list_thumbnails_for_folder_async", "generate_missing_thumbnails_async"] import os import asyncio import omni.client import omni.kit.app from typing import List, Dict, Set from carb import log_warn from omni.kit.helper.file_utils import asset_types...
omniverse-code/kit/exts/omni.kit.widget.filebrowser/omni/kit/widget/filebrowser/nucleus_model.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.filebrowser/omni/kit/widget/filebrowser/column_delegate_registry.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.filebrowser/omni/kit/widget/filebrowser/clipboard.py
# Copyright (c) 2018-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 an...
omniverse-code/kit/exts/omni.kit.widget.filebrowser/omni/kit/widget/filebrowser/widget.py
# Copyright (c) 2018-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.widget.filebrowser/omni/kit/widget/filebrowser/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.widget.filebrowser/omni/kit/widget/filebrowser/abstract_column_delegate.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.filebrowser/omni/kit/widget/filebrowser/tests/test_zoom_bar.py
## Copyright (c) 2018-2019, 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.kit.widget.filebrowser/omni/kit/widget/filebrowser/tests/test_thumbnails.py
## Copyright (c) 2018-2019, 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.kit.widget.filebrowser/omni/kit/widget/filebrowser/tests/test_datetime_format.py
## Copyright (c) 2018-2019, 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.kit.widget.filebrowser/omni/kit/widget/filebrowser/tests/test_widget.py
## Copyright (c) 2018-2019, 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.kit.widget.filebrowser/omni/kit/widget/filebrowser/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 softw...
omniverse-code/kit/exts/omni.kit.widget.filebrowser/omni/kit/widget/filebrowser/tests/test_populate.py
## Copyright (c) 2018-2019, 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.kit.widget.filebrowser/omni/kit/widget/filebrowser/tests/test_auto_refresh.py
## Copyright (c) 2018-2019, 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.kit.widget.filebrowser/omni/kit/widget/filebrowser/tests/test_drop.py
## Copyright (c) 2018-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 softw...
omniverse-code/kit/exts/omni.kit.widget.filebrowser/omni/kit/widget/filebrowser/tests/test_grid_view.py
## Copyright (c) 2018-2019, 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.kit.widget.filebrowser/docs/CHANGELOG.md
# Changelog The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ## [2.3.10] - 2023-01-19 ### Updated - Fixed issue with NucleusItem calling `on_populated_async` with incorrect number of parameters ## [2.3.9] - 2023-01-11 ### Updated - Fixed issue with selections before cards created ## ...
omniverse-code/kit/exts/omni.kit.widget.filebrowser/docs/README.md
# Kit Filebrowser Widget [omni.kit.widget.filebrowser] The basic UI widget and set of supporting classes for navigating the filesystem through a tree view. The filesystem can either be from your local machine or the Omniverse server.
omniverse-code/kit/exts/omni.kit.widget.filebrowser/docs/index.rst
omni.kit.widget.filebrowser ########################### Kit Filebrowser Widget. .. toctree:: :maxdepth: 1 Overview CHANGELOG .. automodule:: omni.kit.widget.filebrowser :platform: Windows-x86_64, Linux-x86_64 :members: :show-inheritance: :undoc-members: .. autoclass:: FileBrowserWidget...
omniverse-code/kit/exts/omni.kit.widget.filebrowser/docs/Overview.md
# Overview
omniverse-code/kit/exts/omni.index.compute/ogn/docs/OgnTimestepSelector.rst
.. _omni_index_compute_timestepSelector_1: .. _omni_index_compute_timestepSelector: .. ================================================================================ .. THIS PAGE IS AUTO-GENERATED. DO NOT MANUALLY EDIT. .. ================================================================================ :orphan: ....
omniverse-code/kit/exts/omni.index.compute/ogn/docs/OgnIndexDistributedComputeTechnique.rst
.. _omni_index_compute_indexDistributedComputeTechnique_1: .. _omni_index_compute_indexDistributedComputeTechnique: .. ================================================================================ .. THIS PAGE IS AUTO-GENERATED. DO NOT MANUALLY EDIT. .. =============================================================...
omniverse-code/kit/exts/omni.index.compute/omni/index/compute/__init__.py
"""There is no public API to this module.""" __all__ = [] from ._impl.extension import _PublicExtension # noqa: F401
omniverse-code/kit/exts/omni.index.compute/omni/index/compute/ogn/OgnTimestepSelectorDatabase.py
"""Support for simplified access to data on nodes of type omni.index.compute.timestepSelector Selects a timestep from time input """ import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools.ogn as ogn class OgnTimestepSelectorDatabase(og.Database): """Helper class pr...
omniverse-code/kit/exts/omni.index.compute/omni/index/compute/ogn/OgnIndexDistributedComputeTechniqueDatabase.py
"""Support for simplified access to data on nodes of type omni.index.compute.indexDistributedComputeTechnique Integration with NVIDIA IndeX distributed compute technique """ 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 OgnIndexDi...
omniverse-code/kit/exts/omni.index.compute/omni/index/compute/ogn/tests/TestOgnIndexDistributedComputeTechnique.py
import os import omni.kit.test import omni.graph.core as og import omni.graph.core.tests as ogts from omni.graph.core.tests.omnigraph_test_utils import _TestGraphAndNode from omni.graph.core.tests.omnigraph_test_utils import _test_clear_scene from omni.graph.core.tests.omnigraph_test_utils import _test_setup_scene from...
omniverse-code/kit/exts/omni.index.compute/omni/index/compute/ogn/tests/TestOgnTimestepSelector.py
import os import omni.kit.test import omni.graph.core as og import omni.graph.core.tests as ogts from omni.graph.core.tests.omnigraph_test_utils import _TestGraphAndNode from omni.graph.core.tests.omnigraph_test_utils import _test_clear_scene from omni.graph.core.tests.omnigraph_test_utils import _test_setup_scene from...
omniverse-code/kit/exts/omni.index.compute/omni/index/compute/ogn/tests/__init__.py
"""====== GENERATED BY omni.graph.tools - DO NOT EDIT ======""" import omni.graph.tools._internal as ogi ogi.import_tests_in_directory(__file__, __name__)
omniverse-code/kit/exts/omni.index.compute/omni/index/compute/bindings/_omni_index_compute.pyi
"""pybind11 omni.index.compute bindings""" from __future__ import annotations import omni.index.compute.bindings._omni_index_compute import typing __all__ = [ "IOmniGraphIndex", "acquire_interface", "release_interface" ] class IOmniGraphIndex(): pass def acquire_interface(plugin_name: str = None, lib...
omniverse-code/kit/exts/omni.index.compute/omni/index/compute/tests/test_api.py
"""Testing the stability of the API in this module""" import omni.graph.core.tests as ogts import omni.index.compute as ogidx from omni.graph.tools.tests.internal_utils import _check_module_api_consistency, _check_public_api_contents # ====================================================================== class _Test...
omniverse-code/kit/exts/omni.index.compute/omni/index/compute/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.kit.manipulator.selector/omni/kit/manipulator/selector/manipulator_order_manager.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.manipulator.selector/omni/kit/manipulator/selector/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.manipulator.selector/omni/kit/manipulator/selector/manipulator_selector.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.manipulator.selector/omni/kit/manipulator/selector/__init__.py
from .extension import * from .manipulator_base import ManipulatorBase
omniverse-code/kit/exts/omni.kit.manipulator.selector/omni/kit/manipulator/selector/manipulator_base.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.manipulator.selector/omni/kit/manipulator/selector/tests/test_manipulator.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.manipulator.selector/omni/kit/manipulator/selector/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.manipulator.selector/omni/kit/manipulator/selector/tests/test_manipulator_selector.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.manipulator.selector/docs/index.rst
omni.kit.manipulator.selector ################################ Prim Manipulator Selector Extension .. toctree:: :maxdepth: 1 CHANGELOG .. automodule:: omni.kit.manipulator.selector :platform: Windows-x86_64, Linux-x86_64 :members: :undoc-members: :show-inheritance: :imported-members: ...
omniverse-code/kit/exts/omni.usd.schema.semantics/pxr/Semantics/__init__.py
# #==== # Copyright (c) 2018, NVIDIA CORPORATION #====== # # # 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. ...
omniverse-code/kit/exts/omni.usd.schema.semantics/pxr/Semantics/_semanticAPI.pyi
from __future__ import annotations import pxr.Semantics._semanticAPI import typing import Boost.Python import pxr.Usd __all__ = [ "SemanticsAPI" ] class SemanticsAPI(pxr.Usd.APISchemaBase, pxr.Usd.SchemaBase, Boost.Python.instance): @staticmethod def Apply(*args, **kwargs) -> None: ... @staticmethod ...
omniverse-code/kit/exts/omni.usd.schema.semantics/plugins/SemanticAPI/resources/generatedSchema.usda
#usda 1.0 ( "WARNING: THIS FILE IS GENERATED BY usdGenSchema. DO NOT EDIT." ) class "SemanticsAPI" { string semantic:__INSTANCE_NAME__:params:semanticData ( doc = "String value of the semantic data" ) string semantic:__INSTANCE_NAME__:params:semanticType ( doc = "String value of the se...
omniverse-code/kit/exts/omni.usd.schema.semantics/plugins/SemanticAPI/resources/SemanticAPI/schema.usda
#usda 1.0 ( subLayers = [ @usd/schema.usda@ ] ) over "GLOBAL" ( customData = { string libraryName = "semantics" string libraryPath = "./" string libraryPrefix = "Semantics" } ) { } class "SemanticsAPI" ( inherits = </APISchemaBase> customData = { token ...
omniverse-code/kit/exts/omni.rtx.index_composite/omni/rtx/index_composite/__init__.py
omniverse-code/kit/exts/omni.rtx.index_composite/omni/rtx/index_composite/tests/nvindex_rtx_composite_render_test.py
#!/usr/bin/env python3 import carb import omni.kit.commands import omni.kit.test import omni.usd from omni.rtx.tests import RtxTest, testSettings, postLoadTestSettings from omni.rtx.tests.test_common import set_transform_helper, wait_for_update from omni.kit.test_helpers_gfx.compare_utils import ComparisonMetric from...
omniverse-code/kit/exts/omni.rtx.index_composite/omni/rtx/index_composite/tests/__init__.py
from .nvindex_rtx_composite_render_test import *
omniverse-code/kit/exts/omni.kit.usd_undo/omni/kit/usd_undo/__init__.py
from .layer_undo import *
omniverse-code/kit/exts/omni.kit.usd_undo/omni/kit/usd_undo/layer_undo.py
from pxr import Sdf, Usd class UsdLayerUndo: class Key: def __init__(self, path, info): self.path = path self.info = info def __init__(self, layer: Sdf.Layer): self._layer = layer self.reset() def reserve(self, path: Sdf.Path, info=None): # Check i...
omniverse-code/kit/exts/omni.kit.usd_undo/omni/kit/usd_undo/tests/__init__.py
from .test import *
omniverse-code/kit/exts/omni.kit.usd_undo/omni/kit/usd_undo/tests/test.py
import omni.kit.test from ..layer_undo import * from pxr import Sdf, Usd, UsdGeom, Kind, Gf class TestUsdUndo(omni.kit.test.AsyncTestCase): async def test_layer_undo(self): stage = Usd.Stage.CreateInMemory() usd_undo = UsdEditTargetUndo(stage.GetEditTarget()) mesh = UsdGeom.Mesh.Define(st...
omniverse-code/kit/exts/omni.kit.usd_undo/docs/index.rst
omni.kit.usd_undo ########################### Utitlity to implement undo for USD layer. ``UsdLayerUndo`` class is the utility to help you to implement USD undo. It reserves the state of a path, which could be a prim path or a property path. And when you call ``UsdLayerUndo.undo()``, those paths will be restored to th...
omniverse-code/kit/exts/omni.kit.manipulator.selection/omni/kit/manipulator/selection/__init__.py
# Expose these for easier import via from omni.kit.manipulator.selection import XXX from .manipulator import SelectionManipulator, SelectionMode
omniverse-code/kit/exts/omni.kit.manipulator.selection/omni/kit/manipulator/selection/model.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 software an...
omniverse-code/kit/exts/omni.kit.manipulator.selection/omni/kit/manipulator/selection/manipulator.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 software an...
omniverse-code/kit/exts/omni.kit.manipulator.selection/omni/kit/manipulator/selection/tests/test_selection_manipulator.py
## Copyright (c) top_left[0]22, 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 s...
omniverse-code/kit/exts/omni.kit.manipulator.selection/omni/kit/manipulator/selection/tests/__init__.py
from .test_selection_model import TestSelectionModel from .test_selection_manipulator import TestSelectionManipulator
omniverse-code/kit/exts/omni.kit.manipulator.selection/omni/kit/manipulator/selection/tests/test_scene_ui_base.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.manipulator.selection/omni/kit/manipulator/selection/tests/test_selection_model.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.manipulator.selection/docs/index.rst
omni.kit.manipulator.selection ########################### Selection Shape/Box for omni.ui.scene .. toctree:: :maxdepth: 1 README CHANGELOG .. automodule:: omni.kit.manipulator.selection :platform: Windows-x86_64, Linux-x86_64 :members: :undoc-members: :show-inheritance: :imported-me...
omniverse-code/kit/exts/omni.kit.filebrowser_column.tags/omni/kit/filebrowser_column/tags/__init__.py
from .tags_extension import TagsExtension
omniverse-code/kit/exts/omni.kit.filebrowser_column.tags/omni/kit/filebrowser_column/tags/tags_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.filebrowser_column.tags/omni/kit/filebrowser_column/tags/tags_delegate.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.layer/PACKAGE-LICENSES/omni.kit.property.layer-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.layer/config/extension.toml
[package] # Semantic Versioning is used: https://semver.org/ version = "1.1.4" 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 = "Layer...
omniverse-code/kit/exts/omni.kit.property.layer/omni/kit/property/layer/layer_property_models.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.layer/omni/kit/property/layer/widgets.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.layer/omni/kit/property/layer/commands.py
import weakref import carb import omni.kit.commands from pxr import Sdf, Usd, UsdGeom, UsdPhysics from .types import LayerMetaType from omni.kit.widget.layers import LayerUtils class ModifyStageAxisCommand(omni.kit.commands.Command): """Modify stage up axis undoable **Command**.""" def __init__(self, stage,...
omniverse-code/kit/exts/omni.kit.property.layer/omni/kit/property/layer/layer_property_widgets.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.layer/omni/kit/property/layer/__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.layer/omni/kit/property/layer/file_picker.py
import asyncio import os import re import psutil import carb import omni.ui import omni.client from typing import Callable, Iterable, Tuple, Union from omni.kit.window.filepicker import FilePickerDialog from omni.kit.widget.filebrowser import FileBrowserItem class FileBrowserSelectionType: FILE_ONLY = 0 DIREC...
omniverse-code/kit/exts/omni.kit.property.layer/omni/kit/property/layer/types.py
class LayerMetaType: START_TIME = 0 END_TIME = 1 TIMECODES_PER_SECOND = 2 FPS_PER_SECOND = 3 UNITS = 4 LAYER_OFFSET = 5 LAYER_SCALE = 6 KG_PER_UNIT = 7 COMMENT = 8 DOC = 9 NUM_PROPERTIES = 10 LayerMetaName = [ "Start Time Code", "End Time Code", "Time Codes Per ...
omniverse-code/kit/exts/omni.kit.property.layer/omni/kit/property/layer/tests/test_property_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 a...
omniverse-code/kit/exts/omni.kit.property.layer/omni/kit/property/layer/tests/__init__.py
from .test_property_window import *
omniverse-code/kit/exts/omni.kit.property.layer/docs/CHANGELOG.md
# Changelog The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ## [1.1.4] - 2023-01-17 ### Changes - Delay frames until layer item is initialized after replacing. ## [1.1.3] - 2022-03-31 ### Changes - Integrate new omni.kit.usd.layers interfaces to replace layers interfaces from omni.us...
omniverse-code/kit/exts/omni.kit.property.layer/docs/index.rst
omni.kit.property.layer ########################### Layer Property Window Widgets .. toctree:: :maxdepth: 1 CHANGELOG
omniverse-code/kit/exts/omni.graph.io/ogn/nodes.json
{ "nodes": { "omni.graph.BundleToUSDA": { "description": "Outputs a represention of the content of a bundle as usda text", "version": 1, "extension": "omni.graph.io", "language": "C++" }, "omni.graph.ExportUSDPrim": { "description":...
omniverse-code/kit/exts/omni.graph.io/ogn/docs/OgnImportUSDPrim.rst
.. _omni_graph_ImportUSDPrim_1: .. _omni_graph_ImportUSDPrim: .. ================================================================================ .. THIS PAGE IS AUTO-GENERATED. DO NOT MANUALLY EDIT. .. ================================================================================ :orphan: .. meta:: :title: i...
omniverse-code/kit/exts/omni.graph.io/ogn/docs/OgnTransformBundle.rst
.. _omni_graph_TransformBundle_1: .. _omni_graph_TransformBundle: .. ================================================================================ .. THIS PAGE IS AUTO-GENERATED. DO NOT MANUALLY EDIT. .. ================================================================================ :orphan: .. meta:: :titl...