![]() |
|
#5
|
|||
|
|||
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) |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Collision of an avatar with a quad | Frank Verberne | Vizard | 8 | 06-04-2008 09:44 AM |
Looking through the eyes of an avatar | Frank Verberne | Vizard | 2 | 04-01-2008 05:52 AM |
How to make avatar's eyes to blink when speaking | michelcm3 | Vizard | 12 | 01-15-2008 08:48 AM |
Avatars in an array and link/unlink | betancourtb82 | Vizard | 7 | 09-05-2006 04:06 PM |
VRML Viewpoint error | bstankie | Vizard | 1 | 03-11-2003 02:10 PM |