|
8 | 8 |
|
9 | 9 | **Supported OS:** Linux
|
10 | 10 |
|
11 |
| -**Changelog:** [CHANGELOG.md](exts/add_on.xr.openxr/docs/CHANGELOG.md) |
| 11 | +**Changelog:** [CHANGELOG.md](exts/semu.xr.openxr/docs/CHANGELOG.md) |
12 | 12 |
|
13 | 13 | **Table of Contents:**
|
14 | 14 |
|
|
56 | 56 | * Git url (git+https) as extension search path
|
57 | 57 |
|
58 | 58 | ```
|
59 |
| - git+https://github.com/Toni-SM/add_on.xr.openxr.git?branch=main&dir=exts |
| 59 | + git+https://github.com/Toni-SM/semu.xr.openxr.git?branch=main&dir=exts |
60 | 60 | ```
|
61 | 61 |
|
62 | 62 | * Compressed (.zip) file for import
|
63 | 63 |
|
64 |
| - [add_on.xr.openxr.zip](https://github.com/Toni-SM/add_on.xr.openxr/releases) |
| 64 | + [semu.xr.openxr.zip](https://github.com/Toni-SM/semu.xr.openxr/releases) |
65 | 65 |
|
66 | 66 | 2. Enable the extension using the [Extension Manager](https://docs.omniverse.nvidia.com/prod_extensions/prod_extensions/ext_extension-manager.html) or by following the steps in [Extension Enabling/Disabling](https://docs.omniverse.nvidia.com/py/kit/docs/guide/extensions.html#extension-enabling-disabling)
|
67 | 67 |
|
68 | 68 | 3. Import the extension into any python code and use it...
|
69 | 69 |
|
70 | 70 | ```python
|
71 |
| - from add_on.xr.openxr import _openxr |
| 71 | + from semu.xr.openxr import _openxr |
72 | 72 | ```
|
73 | 73 |
|
74 | 74 | 4. Or use the [GUI launcher](#gui) to directly dislpay the current stage in the HMD
|
@@ -99,7 +99,7 @@ A short video, after the code, shows a test of the OpenXR application from the S
|
99 | 99 |
|
100 | 100 | ```python
|
101 | 101 | import omni
|
102 |
| -from add_on.xr.openxr import _openxr |
| 102 | +from semu.xr.openxr import _openxr |
103 | 103 |
|
104 | 104 | # create a sphere to mirror the controller's pose
|
105 | 105 | sphere_prim = omni.usd.get_context().get_stage().DefinePrim("/sphere", "Sphere")
|
@@ -175,13 +175,13 @@ The other options (under the central separator) can be modified while the applic
|
175 | 175 | * Acquire OpenXR interface
|
176 | 176 |
|
177 | 177 | ```python
|
178 |
| - _openxr.acquire_openxr_interface() -> add_on::xr::openxr::OpenXR |
| 178 | + _openxr.acquire_openxr_interface() -> semu::xr::openxr::OpenXR |
179 | 179 | ```
|
180 | 180 |
|
181 | 181 | * Release OpenXR interface
|
182 | 182 |
|
183 | 183 | ```python
|
184 |
| - _openxr.release_openxr_interface(xr: add_on::xr::openxr::OpenXR) -> None |
| 184 | + _openxr.release_openxr_interface(xr: semu::xr::openxr::OpenXR) -> None |
185 | 185 | ```
|
186 | 186 |
|
187 | 187 | <a name="api-functions"></a>
|
|
0 commit comments