View Single Post
  #10  
Old 05-22-2008, 04:07 PM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
Well, that rules out the HMD. Can you try using the texture crosshair.png with the above sample code? Does the crosshair fill up the screen? Your entire script should look like this:
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('crosshair.png')
quad.texture(texture)
And the output should look like the attached image.
Attached Thumbnails
Click image for larger version

Name:	output.JPG
Views:	1560
Size:	22.7 KB
ID:	243  
Reply With Quote