View Single Post
  #2  
Old 04-16-2008, 11:00 AM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
Here is some sample code that will fill the entire screen with a texture:
Code:
tex = viz.add('ball.jpg')
quad = viz.addTexQuad(parent=viz.SCREEN,scale=[12.8,10.4,0],pos=(0.5,0.5,0))
quad.texture(tex)
Reply With Quote