View Single Post
  #2  
Old 09-26-2003, 01:30 PM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
Which avatars are you referring to?

For the cal3d avatars you would do the follwoing:

Code:
avatar = viz.add('male.cfg')
pos = avatar.get(viz.POSITION)
For the older avatars you would do the following:

Code:
import Avatar
avatar = Avatar.Person()
pos = avatar.coordinates()
Reply With Quote