View Single Post
  #35  
Old 03-21-2006, 10:57 AM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
Try incrementing the to the next avatar before you access it:
Code:
nextAvatar = (nextAvatar + 1) % len(avatars)
avatar = avatars[nextAvatar]
The face and body of the avatar are two separate objects, so you need to also hide the face when you hide the avatar.
Reply With Quote