Commit 0d0dd13f authored by rwiltz's avatar rwiltz Committed by Kelly Guo

Updates xr experience file by removing isaacsim.xr.openxr dep, and sets ar...

Updates xr experience file by removing isaacsim.xr.openxr dep, and sets ar profile "performance" (#401)

- Remove dep on isaacsim.xr.openxr since it has been replaced by
omni.kit.xr
- Set AR profile rendering settings to "performance" for improved single
GPU frame rate.

<!--
Thank you for your interest in sending a pull request. Please make sure
to check the contribution guidelines.

Link:
https://isaac-sim.github.io/IsaacLab/main/source/refs/contributing.html
-->

Please include a summary of the change and which issue is fixed. Please
also include relevant motivation and context.
List any dependencies that are required for this change.

Fixes # (issue)

<!-- As a practice, it is recommended to open an issue to have
discussions on the proposed pull request.
This makes it easier for the community to keep track of what is being
developed or added, and if a given feature
is demanded by more than one party. -->

<!-- As you go through the list, delete the ones that are not
applicable. -->

- Bug fix (non-breaking change which fixes an issue)

Please attach before and after screenshots of the change if applicable.

<!--
Example:

| Before | After |
| ------ | ----- |
| _gif/png before_ | _gif/png after_ |

To upload images to a PR -- simply drag and drop an image while in edit
mode and it should upload the image directly. You can then paste that
source into the above before/after sections.
-->

- [x] I have run the [`pre-commit` checks](https://pre-commit.com/) with
`./isaaclab.sh --format`
- [x] I have made corresponding changes to the documentation
- [x] My changes generate no new warnings
- [x] I have added tests that prove my fix is effective or that my
feature works
- [x] I have updated the changelog and the corresponding version in the
extension's `config/extension.toml` file
- [x] I have added my name to the `CONTRIBUTORS.md` or my name already
exists there

<!--
As you go through the checklist above, you can mark something as done by
putting an x character in it

For example,
- [x] I have done this task
- [ ] I have not done this task
-->

---------
Signed-off-by: 's avatarKelly Guo <kellyg@nvidia.com>
Co-authored-by: 's avatarKelly Guo <kellyg@nvidia.com>
parent 06a99312
...@@ -28,7 +28,6 @@ renderer.gpuEnumeration.glInterop.enabled = true # Allow Kit XR OpenXR to render ...@@ -28,7 +28,6 @@ renderer.gpuEnumeration.glInterop.enabled = true # Allow Kit XR OpenXR to render
[dependencies] [dependencies]
"isaaclab.python" = {} "isaaclab.python" = {}
"isaacsim.xr.openxr" = {}
# Kit extensions # Kit extensions
"omni.kit.xr.system.openxr" = {} "omni.kit.xr.system.openxr" = {}
...@@ -40,9 +39,9 @@ app.xr.enabled = true ...@@ -40,9 +39,9 @@ app.xr.enabled = true
# xr settings # xr settings
xr.ui.enabled = false xr.ui.enabled = false
xr.depth.aov = "GBufferDepth" xr.depth.aov = "GBufferDepth"
defaults.xr.profile.ar.renderQuality = "off"
defaults.xr.profile.ar.anchorMode = "custom anchor" defaults.xr.profile.ar.anchorMode = "custom anchor"
rtx.rendermode = "RaytracedLighting" rtx.rendermode = "RaytracedLighting"
persistent.xr.profile.ar.renderQuality = "performance"
persistent.xr.profile.ar.render.nearPlane = 0.15 persistent.xr.profile.ar.render.nearPlane = 0.15
xr.openxr.components."omni.kit.xr.openxr.ext.hand_tracking".enabled = true xr.openxr.components."omni.kit.xr.openxr.ext.hand_tracking".enabled = true
xr.openxr.components."isaacsim.xr.openxr.hand_tracking".enabled = true xr.openxr.components."isaacsim.xr.openxr.hand_tracking".enabled = true
......
...@@ -373,7 +373,7 @@ Added ...@@ -373,7 +373,7 @@ Added
0.39.0 (2025-04-01) 0.39.0 (2025-04-01)
~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~
Added Added
~~~~~ ~~~~~
...@@ -391,6 +391,16 @@ Added ...@@ -391,6 +391,16 @@ Added
* Added :meth:`~isaaclab.envs.mdp.observations.body_projected_gravity_b` * Added :meth:`~isaaclab.envs.mdp.observations.body_projected_gravity_b`
0.37.4 (2025-05-12)
~~~~~~~~~~~~~~~~~~~~
Changed
^^^^^^^
* Remove isaacsim.xr.openxr from openxr experience file.
* Use Performance AR profile for XR rendering.
0.37.3 (2025-05-08) 0.37.3 (2025-05-08)
~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~
......
...@@ -19,7 +19,7 @@ from isaaclab.app import AppLauncher ...@@ -19,7 +19,7 @@ from isaaclab.app import AppLauncher
HEADLESS = True HEADLESS = True
# Launch omniverse app. # Launch omniverse app.
app_launcher = AppLauncher(headless=HEADLESS, kit_args="--enable isaacsim.xr.openxr") app_launcher = AppLauncher(headless=HEADLESS)
simulation_app = app_launcher.app simulation_app = app_launcher.app
import numpy as np import numpy as np
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment