View Single Post
  #2  
Old 09-14-2009, 12:25 PM
Jeff Jeff is offline
WorldViz Team Member
 
Join Date: Aug 2008
Posts: 2,471
I'm not exactly sure what you are looking for so here are some options.

1. Vizard comes with a cartoonish robot avatar named Steve that you use. Here is some code that loads him and allows you to control him using the keyboard. For some customizations to Steve look at the module steve.py in the Vizard30/python folder .
Code:
import viz
viz.go()

import steve
model = steve.Steve()
model.setPosition([0,1,5])

# Setup tracking for model
import viztracker
tracker = viztracker.Keyboard6DOF()
model.setTracker(tracker)
2. You could take a look at Evolver as you can create and purchase your own avatars their and have them sent to you in the Cal3D format which Vizard uses.

http://www.evolver.com/

3. Have us develop a custom avatar for you. If you are interested email us at support@worldviz.com
Reply With Quote