View Single Post
  #2  
Old 10-13-2005, 10:03 AM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
Hi,

Avatar animation numbers start at 1, so an animation of 0 is invalid. Try clearing the animation instead by using the following command:
Code:
duck.clear(1) #Stop performing animation 1
Also, when you add the duck, set its idle pose to -1, since it doesn't have one:
Code:
duck.idlepose(-1)
Reply With Quote