View Single Post
  #2  
Old 06-04-2014, 07:40 PM
Jeff Jeff is offline
WorldViz Team Member
 
Join Date: Aug 2008
Posts: 2,471
If you have one setup with hand tracking and another without it's best to create two separate vizconnect config files for each. You can specify which one to use in your application. If you want to toggle the visibility of the hand you can do that with the following code:

Code:
hands = vizconnect.getAvatar().getHands()
rightHand = hands.get('r_hand')
vizact.onkeydown(' ',rightHand.visible,viz.TOGGLE)
Sorry, I don't understand your question about the avatar position.
Reply With Quote