View Single Post
  #5  
Old 08-18-2008, 01:07 PM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
You are using two different timer callbacks. So the last one that is being registered is overwriting the first one. You are better off using the vizact.ontimer function to register multiple timer events that do not conflict with each other. Your code would look something like this:
Code:
def ArrowTimer():
    #Place code that updates arrow here
    pass
vizact.ontimer(0,ArrowTimer)

def AvatarLookTimer():
    #Place code that update avatar head here
    pass
vizact.ontimer(0,AvatarLookTimer)
Reply With Quote