View Single Post
  #7  
Old 03-11-2008, 04:15 PM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
You can create a timer that manually updates the head bone:
Code:
def updateHead():
    euler = tracker.getEuler()
    head.setEuler(euler,viz.ABS_GLOBAL)
vizact.ontimer(0,updateHead)
Reply With Quote