View Single Post
  #4  
Old 07-16-2016, 04:21 AM
Jeff Jeff is offline
WorldViz Team Member
 
Join Date: Aug 2008
Posts: 2,471
Instead of pausing the simulation time, you could pause timers individually. This will not affect running actions:

Code:
timerHandle = vizact.ontimer(0,timerFunction)
#disable timer
timerHandle.setEnabled(viz.OFF)
#enable timer
timerHandle.setEnabled(viz.ON)
Reply With Quote