View Single Post
  #1  
Old 06-06-2007, 02:10 PM
andywhite530 andywhite530 is offline
Member
 
Join Date: May 2007
Posts: 2
setAnimationSpeed

I'm having trouble with the setAnimationSpeed command, below is a simplified version of what I'm trying to do, why isn't it accelerating the walk animation?

import viz
viz.go()
avatar = viz.add("male.cfg")
avatar.state(2)
avatar.setAnimationSpeed(2,5)

btw it does make it faster (and all animations) if the first number in parentheses is 0: avatar.setAnimationSpeed(0,5)

Any ideas? Thanks.
Reply With Quote