View Single Post
  #2  
Old 09-07-2012, 04:10 PM
Jeff Jeff is offline
WorldViz Team Member
 
Join Date: Aug 2008
Posts: 2,471
With the VRPN plug-in in Vizard you can create a server to stream the Intersense data:
Code:
#Add VRPN extension
vrpn = viz.add('vrpn7.dle')

#Create a server
server = vrpn.addTrackerServer('VizardTracker')

#Get the Intersense tracker
isense = viz.add('intersense.dle') 
tracker = isense.addTracker()

#Set tracker that server uses
server.setTracker(tracker)
In PPT, specify the VRPN server when you configure the VRPN input plug-in. Here that would be:
Code:
VizardTracker@Render-PC
where Render-PC is the name of the machine running Vizard.

If the script is not running and streaming data you'll see error messages in PPT Studio when the VRPN Input plug-in is added.
Reply With Quote