### Launching Omniverse Kit with Multiple Enabled Extensions (Bash) Source: https://github.com/nvidia-omniverse/kit-project-template/blob/main/README.md This command launches the `kit.exe` application, similar to the first example. It adds the `source/extensions` folder to the search path using `--ext-folder`. It then enables two extensions upon startup: `omni.hello.world` and `omni.kit.window.extensions`. This demonstrates how to enable multiple extensions simultaneously from the command line. ```bash kit\kit.exe --ext-folder source/extensions --enable omni.hello.world --enable omni.kit.window.extensions ``` -------------------------------- ### Launching Omniverse Kit with Extension Folder and Enabled Extension (Bash) Source: https://github.com/nvidia-omniverse/kit-project-template/blob/main/README.md This command launches the `kit.exe` application. It uses the `--ext-folder` argument to add the `source/extensions` directory to the extension search paths, allowing the application to find extensions located there. The `--enable` argument then enables the `omni.hello.world` extension upon startup. This is an alternative method to adding extensions via the Extension Manager UI. ```bash kit\kit.exe --ext-folder source/extensions --enable omni.hello.world ``` -------------------------------- ### Displaying Omniverse Kit Command Line Help (Bash) Source: https://github.com/nvidia-omniverse/kit-project-template/blob/main/README.md This command launches the `kit.exe` application with the `-h` argument. This argument instructs the application to print its command-line help message to the console, listing available options and their descriptions. This is useful for discovering available command-line arguments for `kit.exe`. ```bash kit\kit.exe -h ``` -------------------------------- ### Opening Project in VS Code Source: https://github.com/nvidia-omniverse/kit-project-template/blob/main/README.md Illustrates how to open the cloned repository directory in Visual Studio Code using the 'code' command, assuming VS Code is in the system's PATH. ```Command Line code C:\projects\kit-project-template ``` -------------------------------- ### Running Omniverse Kit Extension Tests via Command Line Source: https://github.com/nvidia-omniverse/kit-project-template/blob/main/README.md This command executes the test suite for a specific Omniverse Kit extension from the command line. The `--dev` flag can be added to open a test selection window for development purposes, supporting hot-reloading. ```Batchfile tools\test_ext.bat omni.hello.world ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.