View Single Post
  #2  
Old 03-07-2017, 08:46 PM
Jeff Jeff is offline
WorldViz Team Member
 
Join Date: Aug 2008
Posts: 2,471
Each time an object is added in vizconnect, both a raw and a wrapper object are added to the vizconnect session. The raw object is the same as the tracker, display window, input device etc. that is returned when using Vizard code to add the object. The wrapper object is a vizconnect layer that wraps up the raw object along with meta data and may include additional functionality based on the object type. The raw object is accessible from the wrapper:

Code:
joystick = vizconnect.getInput('joystick').getRaw()
The setUpdateFunction is called on a transport and defines the input signals that controls its movements. Are you trying to customize how the joystick moves a transport? If so, how do you want it to operate?
Reply With Quote