View Single Post
  #3  
Old 07-26-2012, 12:17 AM
sleiN13 sleiN13 is offline
Member
 
Join Date: Dec 2008
Posts: 83
You have to lock the bone before the transform is added, unlocking the bone will also force the avatar into the original position/size.

headbone = male.getBone("Bip01 Head")
headbone.lock()
trans = vizmat.Transform()
trans.setScale(0, 0, 0)
headbone.setMatrix(trans)

will probably do what you want, you do lose all animations on the headbone.
Reply With Quote