Based On: Omniverse Kit SDK 106.0
The USD Viewer App Template is designed to provide a robust starting point for developers looking to create streaming Omniverse Applications. This template showcases an RTX viewport, app streaming, and messaging support.
The USD Viewer Template is perfectly suited for streaming into a front end client.
To get started with the USD Viewer template, ensure your development environment meets the prerequisites outlined in the top-level README.
NOTE: Example commands should be executed in powershell in Windows and terminal in Linux.
git lfs --version
If the command returns a version number, Git LFS is installed correctly. If not, you will need to install Git LFS. You can download and install it from the official website here.
git clone https://github.com/NVIDIA-Omniverse/kit-app-template.git
cd kit-app-template
Note for USD Viewer : This application requires extra
and setup
extensions to function as intended. These extensions handle the configuration within application, communication, layout, and other settings. During Application configuration, you will be prompted for information about these extensions.
NOTE: Feel free to use default values for testing purposes.
Linux:
./repo.sh template new
Windows:
.\repo.bat template new
Note: If this is your first time running the
template new
tool, you'll be prompted to accept the Omniverse Licensing Terms.
Follow the prompt instructions:
- ? Select with arrow keys what you want to create: Application
- ? Select with arrow keys your desired template: USD Viewer
- ? Enter name of application .kit file [name-spaced, lowercase, alphanumeric]: [set application name]
- ? Enter application_display_name: [set application display name]
- ? Enter version: [set app version]
For each required extension you will be prompted [display name] -> [extension name]:
- ? Enter name of extension [name-spaced, lowercase, alphanumeric]: [set extension name]
- ? Enter extension_display_name: [set extension display name]
- ? Enter version: [set extension version]
NOTE: You will need to repeat above steps for each extension.
Note that the build step will build all applications contained in the source
directory. Outside of initial experimentation, it is recommended that you build only the application you are actively developing.
Linux:
./repo.sh build
Windows:
.\repo.bat build
If you experience issues related to build, please see the Usage and Troubleshooting section for additional information.
Linux:
./repo.sh launch
Windows:
.\repo.bat launch
? Select with arrow keys which App would you like to launch: [Select the desired viewer application]
NOTE: The initial startup may take a 5 to 8 minutes as shaders compile for the first time. After initial shader compilation, startup time will reduce dramatically.
By default, the USD Viewer template application opens with an empty viewport.
This is the intended behavior. The USD Viewer template application is designed as a base for displaying content either locally or over a streaming connection (See the Local Streaming section below).
To display content in the desktop application, you can pass an argument to the repo launch
command to load content on startup. The USD Viewer template includes sample assets for this purpose. Let's load the stage01.usd
sample asset by providing the full path to the /app/auto_load_usd
argument.
Linux:
./repo.sh launch -- --/app/auto_load_usd={replace-with-full-path-to-kit-app-template}/source/extensions/{replace-with-setup-extension-name}/samples/stage01.usd
Windows:
.\repo.bat launch -- --/app/auto_load_usd={replace-with-full-path-to-kit-app-template}\source\extensions\{replace-with-setup-extension-name}\samples\stage01.usd
Applications and their associated extensions can be tested using the repo test
tooling provided. Each application template includes an initial test suite that can be run to verify the application's functionality.
NOTE: Testing will only be run on applications and extensions within the build directory. A successful build is required before testing.
Linux:
./repo.sh test
Windows:
.\repo.bat test
Linux:
./repo.sh template new
Windows:
.\repo.bat template new
Follow the prompt instructions:
- ? Select with arrow keys what you want to create: Extension
- ? Select with arrow keys your desired template:: [choose extension template]
- ? Enter name of extension [name-spaced, lowercase, alphanumeric]:: [set extension name]
- ? Enter extension_display_name:: [set extension display name]
- ? Enter version:: [set extension version]
Importantly For an extension to become a persistent part of an application, the extension will need to be added to the .kit
file.
[dependencies]
"extension.name" = {}
After a new extension has been added to the .kit
file, the application should be rebuilt to ensure extensions are populated to the build directory.
For deploying your application, create a deployable package using the package
command:
Linux:
./repo.sh package
Windows:
.\repo.bat package
By default, the package
command will name the package based on the name
value contained in the repo.toml
file at the root of the repository. By default, this value is set to kit-app-template
. Modify this value to set a persistent package name for your application.
Alternatively, you can specify a package name using the --name
flag:
Linux:
./repo.sh package --name [package_name]
Windows:
.\repo.bat package --name [package_name]
This will bundle your application into a distributable format, ready for deployment on compatible platforms.
source/
directory the package version will need to be set independently of a given kit
file. The version is set within the tools/VERSION.md
file.
The UI-based template applications in this repository produce more than a single .kit
file. For the USD Viewer template application, this includes {your-app-name}_gdn.kit
and {your-app-name}_streaming.kit
. For local streaming, we'll use the {your-app-name}_streaming.kit
file. This file inherits from the base application and adds necessary streaming components like omni.kit.livestream.webrtc
. To try local streaming, you need a web client to connect to the streaming server.
The web viewer sample can be found here
git clone https://github.com/NVIDIA-Omniverse/web-viewer-sample.git
Follow the instructions in the README to install the necessary dependencies.
--no-window
passes an argument directly to Kit allowing it to run without the main application window to prevent conflicts with the streaming client.
Linux:
./repo.sh launch -- --no-window
Windows:
.\repo.bat launch -- --no-window
Select the {your-app-name}_streaming.kit
and wait for the application to start
npm run dev
In a Chromium-based browser, navigate to http://localhost:5173/ and you should see the streaming client connect to the running Kit application.