View Single Post
  #2  
Old 02-15-2008, 02:37 PM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
Please have a look at the documentation for the setFace command. You are passing the head/neck bone arguments in reverse order. Either way, you don't even need to specify them, the default values should work. Simply change the line:
Code:
male.setFace( head, 'skel_Neck', 'skel_Head')
to:
Code:
male.setFace(head)
Reply With Quote