View Single Post
  #13  
Old 09-17-2008, 11:39 AM
Veleno Veleno is offline
WorldViz Team Member
 
Join Date: Sep 2005
Posts: 148
Hi Lukat, if this is the version of the miniviewer you used, it worked fine on my computer.
http://download.gna.org/cal3d/source...ies-0.10.0.zip

You can also view the files in Vizard. If the name of your character's file is myChar.cfg, then you can use a script like the following:

Code:
import viz
viz.go()

char1 = viz.add('myChar.cfg')
Hit run and move back a little, and you'll see your avatar.

As a basic way to view an animation, you can then add:
Code:
char.state(2)
Where "2" is the second animation in your cfg file's animation list. You can also see a numbered list of animations on an avatar in the resource window by expanding that avatar's name, and then "animations." (This will appear after running the script once)
Reply With Quote