Thread: freeze problem
View Single Post
  #8  
Old 11-29-2004, 04:52 PM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
Hi,

To prevent the avatar from changing animations after turning its head, set its idle pose to -1. Here is how to do it for version 2.17a and below:
Code:
avatar.cal.pose(-1)
For version 2.50 and above, the previous code will not work. You will have to do the following:
Code:
avatar.idlepose(-1)
Reply With Quote