View Single Post
  #2  
Old 07-21-2009, 09:48 AM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
Do you mean display a texture on the screen? If so, the following code should help:
Code:
import viz
viz.go()

texture = viz.add('ball.jpg')

quad = viz.addTexQuad(parent=viz.SCREEN,pos=(0.9,0.9,0))
quad.texture(texture)
Reply With Quote