View Single Post
  #4  
Old 02-10-2016, 06:21 AM
Jeff Jeff is offline
WorldViz Team Member
 
Join Date: Aug 2008
Posts: 2,471
You could get a handle to the link associated with the oculus tracker and apply an offset to that:

Code:
link = vizconnect.getTracker('dk2').getLink()
# clear link offsets
link.reset(viz.RESET_OPERATORS)
# apply offset
link.postTrans([0, 0, 4])
Reply With Quote