Thread: stop physic
View Single Post
  #2  
Old 03-10-2009, 12:07 PM
Jeff Jeff is offline
WorldViz Team Member
 
Join Date: Aug 2008
Posts: 2,471
You could use a timer and get the position of the ball. Once its position has reached the point you specify you can either disable physics for the scene
Code:
viz.phys.disable()
or for just the ball
Code:
ball.disable(viz.PHYSICS)
Reply With Quote