View Single Post
  #2  
Old 09-16-2004, 01:51 PM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
Hi,

VZF objects have a morph command which allows you to set the percentage value of a morph. Sample:
Code:
face = viz.add('myhead.vzf')

#Set morph 0 to 50%
face.morph(0,0.5)

#Animate the morph going to 100% in 2 seconds
face.morph(0,1.0,2)
Look in the command reference under node3d:face for more information.
Reply With Quote