View Single Post
  #2  
Old 04-20-2010, 04:09 PM
Jeff Jeff is offline
WorldViz Team Member
 
Join Date: Aug 2008
Posts: 2,471
When the viewpoint is linked to the tracker trying to set it's position will not have any effect. In your timer function that moves the view down you could do something like:
Code:
link.reset(viz.RESET_OPERATORS)
link.postTrans([0,fallV,0])
then when you want to move the view back up you would use:
Code:
link.reset(viz.RESET_OPERATORS)
Reply With Quote