Thread: Object.remove()
View Single Post
  #31  
Old 03-08-2006, 10:13 AM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
vizact.sequence only accepts actions. RestoreAvatar is not an action, it is a regular python function. To turn it into an action you need to do the following:
Code:
vizact.sequence(vizact.waittime(4),vizact.call(RestoreAvatar))
Reply With Quote