View Single Post
  #6  
Old 03-24-2015, 12:42 AM
Jeff Jeff is offline
WorldViz Team Member
 
Join Date: Aug 2008
Posts: 2,471
Please contact support@worldviz.com and we'll open a support ticket for the issue with the arms.

To find the walk animation using the verb argument there must be an entry in the CFG file that has verb + '_animation'. This should be equal to the animation number. Add the following line to the end of the CFG file:

Code:
walk_animation = 44
Then when you run the following line of code animation 44 will be applied with the walkTo action:

Code:
WALK = vizact.walkTo( pos=[ 0, 0, 0 ], walkSpeed = 0.5, verb = 'walk' )
Reply With Quote