### Get Help for Omniverse App Command (Batch) Source: https://github.com/nvidia-omniverse/kit-extension-template/blob/main/README.md This command displays the help message and available options for a specific Omniverse App's batch script. ```Batch app\omni.code.bat -h ``` -------------------------------- ### Linking to Omniverse App Path (Batch) Source: https://github.com/nvidia-omniverse/kit-extension-template/blob/main/README.md Command to run the link_app.bat script specifying a direct path to an Omniverse Kit application installation using the --path flag. This creates the app link pointing to the exact location provided. ```bash link_app.bat --path "C:/Users/bob/AppData/Local/ov/pkg/create-2021.3.4" ``` -------------------------------- ### Linking to Specific Omniverse App (Batch) Source: https://github.com/nvidia-omniverse/kit-extension-template/blob/main/README.md Command to run the link_app.bat script specifying a particular Omniverse Kit application by its name (e.g., create) using the --app flag. This creates the app link pointing to the specified application installation. ```bash link_app.bat --app create ``` -------------------------------- ### Linking to Default Omniverse App (Batch) Source: https://github.com/nvidia-omniverse/kit-extension-template/blob/main/README.md Command to run the link_app.bat script without arguments. This script automatically finds and creates a symbolic link named app in the repository root, pointing to a recommended installed Omniverse Kit application. ```bash link_app.bat ``` -------------------------------- ### Run Omniverse Kit with Extension (Batch) Source: https://github.com/nvidia-omniverse/kit-extension-template/blob/main/README.md This command runs the core Omniverse Kit executable directly, adding a specified folder to the extension search path and enabling a particular extension on startup. This is useful for testing extensions without a full App. ```Batch app\kit\kit.exe --ext-folder exts --enable omni.hello.world ``` -------------------------------- ### Run Omniverse Kit with Extension and Extensions Window (Batch) Source: https://github.com/nvidia-omniverse/kit-extension-template/blob/main/README.md This command runs the core Omniverse Kit executable, enabling a specific extension and also the built-in extensions window extension, allowing further extension management via the UI. ```Batch app\kit\kit.exe --ext-folder exts --enable omni.hello.world --enable omni.kit.window.extensions ``` -------------------------------- ### Run Omniverse App with Extension (Batch) Source: https://github.com/nvidia-omniverse/kit-extension-template/blob/main/README.md This command runs a specific Omniverse App (e.g., omni.code.bat) and adds a specified folder to the extension search path while enabling a particular extension on startup. ```Batch app\omni.code.bat --ext-folder exts --enable omni.hello.world ``` -------------------------------- ### Running Extension Tests (Batch) Source: https://github.com/nvidia-omniverse/kit-extension-template/blob/main/README.md Command to run tests for a specific Omniverse Kit extension from the command line using the provided batch script. It enables the specified extension and the testing system. The --dev flag opens a test selection window for development. ```Batch app\kit\test_ext.bat omni.hello.world --ext-folder exts ``` -------------------------------- ### Configuring Extension Python Module (TOML) Source: https://github.com/nvidia-omniverse/kit-extension-template/blob/main/README.md Configuration snippet for the extension.toml file of a new Omniverse Kit extension. It specifies the main Python module (namespace) that the extension system should load when the extension is enabled. ```toml [[python.module]] name = "[new python module]" ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.