Community
VRED Forum
Welcome to Autodesk’s VRED Forums. Share your knowledge, ask questions, and explore popular VRED topics.
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Deactivate Varjo Hand Gestures

5 REPLIES 5
SOLVED
Reply
Message 1 of 6
christian.buzga
720 Views, 5 Replies

Deactivate Varjo Hand Gestures

Hi all,

 

we have a lot of problems by VR presentations with our Varjo XR3, that participants inadvertently activate the teleport functionality and then teleport themselfs around the scene.

 

So is there any possibility to deactivate those gestures? We still want the hands, but without gesture detection :). By the way, deactive the VRED (all) interactions does not help.

 

Big thanks,
Christian

Tags (2)
5 REPLIES 5
Message 2 of 6

try this:

vrDeviceService.deactivateInteraction('Teleport')

That works for me.

But I don't know how to deactive the Menu. When the user put two hands together, somethime the VR menu comes out. If anyone know how?

Message 3 of 6

Thanks that works for the teleporting. We have also that issue that users popup the VR Menu with there gestures and we can not disable that function. I hope VRED Team will fix this ;).

 

Best regards,

Christian

Message 4 of 6

Hi,

 

Here is a way to disable the VR menu's show/hide actions.

# Get VR Menu Interaction
tools_menu = vrDeviceService.getInteraction('Tools Menu')
# Get Actions [showMenu, hideMenu]
tools_menu_actions = tools_menu.getControllerActions()
# Disable Actions
tools_menu.removeControllerAction(tools_menu_actions[0])
tools_menu.removeControllerAction(tools_menu_actions[1])

 

Regards,

-Dan

Message 5 of 6

Awesome, that works! Thanks a lot for the snippet!

Message 6 of 6

Any way to disable gestures without disabling controller actions? Stoping hands from triggering controller actions

 

Thanks a lot

Can't find what you're looking for? Ask the community or share your knowledge.

Post to forums  

Autodesk Design & Make Report