View Single Post
  #32  
Old 03-20-2006, 02:17 PM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
Hi,

That means you are trying to index into the avatar list with a value greater than the size of the list. Are you deleting items from the avatar list after you create it? If so then you need to change the way you increment to the next avatar:
Code:
nextAvatar = (nextAvatar + 1) % len(avatars)
Reply With Quote