View Single Post
  #2  
Old 06-24-2013, 11:04 AM
Jeff Jeff is offline
WorldViz Team Member
 
Join Date: Aug 2008
Posts: 2,471
If you're using the viztracker method you can move the position of the user with the movable node. See the using viztracker page for more information.

Or you can link the viewpoint to the tracker and set the link mask to orientation. That will allow you to move the viewpoint position:
Code:
isense = viz.add('intersense.dle')
oriTracker = isense.addTracker() 
viz.link(oriTracker,viz.MainView, mask = viz.LINK_ORI)
viz.MainView.setPosition([0,1.5,1])
Reply With Quote