View Single Post
  #2  
Old 05-21-2008, 06:23 PM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
Are you using the correct yaw/pitch offsets that were specified in the user manual for your particular HMD model? These offset values can vary between different models.

Here is some code that will fill the entire window with a texture:
Code:
import viz
viz.go()

quad = viz.addTexQuad(parent=viz.ORTHO)
quad.alignment(viz.TEXT_LEFT_BOTTOM)
viz.link(viz.WindowSize,quad,mask=viz.LINK_SCALE)

texture = viz.add('image.jpg')
quad.texture(texture)
Reply With Quote