alvr-visionos
alvr-visionos copied to clipboard
Hands off
how can you turn off your hands so they are not visible in vr ?
Try turning off the "Show hands overlaid" toggle in the initial screen.
There's a weird bug with the setting (not sure if it's Apple's fault or ours), if you open the control center and close it, it'll apply the setting for sure.
yeah I have no clue wtf is going on with this one, I even tried two different immersive scenes to rule out Observable bugs:
ImmersiveSpace(id: "ClientWithHands") {
CompositorLayer(configuration: ContentStageConfiguration()) { layerRenderer in
let renderer = Renderer(layerRenderer)
renderer.startRenderLoop()
}
}
.immersionStyle(selection: $clientImmersionStyle, in: .full)
.upperLimbVisibility(.visible)
ImmersiveSpace(id: "ClientNoHands") {
CompositorLayer(configuration: ContentStageConfiguration()) { layerRenderer in
let renderer = Renderer(layerRenderer)
renderer.startRenderLoop()
}
}
.immersionStyle(selection: $clientImmersionStyle, in: .full)
.upperLimbVisibility(.hidden)
still broken for some reason, so it seems like Apple needs to fix it.