Are there any officially release samples for kit 108 and XR features?

Hi, I’m trying to have menus like in NVIDIA-Omniverse/kit-xr-samples, but it works with kit 106 and isn’t working with kit 108.

I know there were packages renamed, classes reworked etc, so I wonder if anyone worked with classes from omni.kit.scene_view.xr_utils (which was previously omni.kit.xr.scene_view.utils) and especially with these two
omni.kit.scene_view.xr_utils.manipulator_components.widget_component.WidgetComponent,
omni.kit.scene_view.xr_utils.ui_container.UiContainer
I’m trying to build a XR menu in kit 108 app, and have too many unknowns…

Hi there and thanks for your question. Unfortunately, we have not had chance to update the XR samples at this time. However, they should still work, if you keep in mind that some of the extensions have been renamed.

Sure, renaming has happened, like
omni.kit.xr.scene_view.utils.manipulator_components.widget_component.WidgetComponent
moved to

omni.kit.scene_view.xr_utils.manipulator_components.widget_component.WidgetComponent

Also,
omni.kit.xr.scene_view.utils.ui_container.UiContainer
moved to

omni.kit.scene_view.xr_utils.ui_container.UiContainer

But, UIContainer seems to have constructor changed, in kit 108 it looks like
class UiContainer(Generic[_TSceneView]):
definit(self,
scene_view_type: type[_TSceneView],

the whole concept has changed (there was no scene_view_type previously, in kit 106), and no way way to learn how to rewite my code, except like digging the kit’ sources…

I understand. I am sorry, but I do not have more samples at this time.