View Single Post
  #2  
Old 08-28-2008, 04:31 PM
Jeff Jeff is offline
WorldViz Team Member
 
Join Date: Aug 2008
Posts: 2,471
With animation paths you can change the speed of the animation or you can pause an animation. To reduce the speed by half

path = viz.add(viz.ANIMATION_PATH)
path.speed(.5)

to pause the animation

path.pause()
Reply With Quote