View Single Post
  #6  
Old 10-13-2014, 01:21 PM
brunomartelli brunomartelli is offline
Member
 
Join Date: Apr 2013
Location: London
Posts: 41
Also in that example file, when i added

viz.go(viz.FULLSCREEN |viz.QUAD_BUFFER)

only center widow was stereo, so I had to tell the other windows to be stereo like this:

leftWindow = viz.addWindow(size=WINDOW_SIZE,pos=[0,1])
leftWindow.stereo(viz.QUAD_BUFFER)
cave.addWall(LeftWall,window=leftWindow)
Reply With Quote