View Single Post
  #8  
Old 10-27-2017, 01:56 PM
Jeff Jeff is offline
WorldViz Team Member
 
Join Date: Aug 2008
Posts: 2,471
When gestures are applied, the model is added through the hand.py module. Create a copy of hand.py, place that in the same folder as the vizconnect file, and change the line of code that adds the model in the __init__ method of the HandModel class to:

Code:
#Initialize base class
import vizfx
hand = vizfx.addAvatar(file,**kw)
viz.VizAvatar.__init__(self,hand.id)
viz.EventClass.__init__(self)
Reply With Quote