View Single Post
  #4  
Old 07-28-2010, 12:15 PM
cade_mccall cade_mccall is offline
Member
 
Join Date: Sep 2004
Posts: 61
does idlepose still work?

When I run the following code, the avatar still pops out of the animation between standing and walking:

import viz

viz.go()

avatar = viz.add('vcc_male.cfg')
avatar.idlepose( -1 )
standing = vizact.animation( 1 )
walking = vizact.walkTo( [0,0,10] )
seq = vizact.sequence( [standing, walking] )
avatar.addAction( seq )
Reply With Quote