View Single Post
  #2  
Old 09-14-2006, 11:29 AM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
It means your installer might be corrupt. What is the file size of the installer?

You can have an animation freeze in the last pose after it executes. Example:
Code:
avatar.execute(SitAnimation,freeze=True)
When the animation finishes, it will freeze the last pose. When you want the avatar to stand up you have to stop the sit animation before executing the stand animation:
Code:
avatar.stopAction(SitAnimation)
avatar.execute(StandAnimation)
Reply With Quote