View Single Post
  #2  
Old 05-24-2016, 03:22 AM
Jeff Jeff is offline
WorldViz Team Member
 
Join Date: Aug 2008
Posts: 2,471
Are there any controllers returned by the steamvr.getControllerList() command? Does the following print 'connected' for each controller?

Code:
import viz
import steamvr

viz.go()

hmd = steamvr.HMD()
if not hmd.getSensor():
	sys.exit('SteamVR HMD not detected')
	
for controller in steamvr.getControllerList():
	print 'connected'
Reply With Quote