View Single Post
  #2  
Old 01-24-2006, 01:43 PM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
Hi,

The built-in animations of nodes will be deprecated in future versions of Vizard. Use the vizact library instead. Here is how you would create the goto action:
Code:
node.add(vizact.goto(x,y,z,speed))
To stop the action you would do the following:
Code:
node.clear(viz.CURRENT_ACTION)
Reply With Quote