PDA

View Full Version : How to remove the head from avatar


Xianshi Xie
06-16-2009, 10:19 AM
I want to remove the head from avatar in WorldViz.

I searched on Internet for a lot time but found nothing, Does anybody know how to do it?

Thanks a lot.

Jeff
06-17-2009, 02:39 PM
You can hide part of the avatar's mesh with the following
avatar.visible(0,'mesh name')

You can find the mesh names in the avatar's .cfg file. This will hide the head of Vizard's vcc_male avatar.
male = viz.add('vcc_male.cfg')
male.visible(0,'casual32_m_highpoly.CMFX')

Xianshi Xie
06-22-2009, 09:05 AM
Thanks a lot!