View Single Post
  #2  
Old 12-19-2008, 04:59 PM
Jeff Jeff is offline
WorldViz Team Member
 
Join Date: Aug 2008
Posts: 2,471
if you use viz.SCREEN the text will be fixed on the screen

Code:
import viz
viz.go()

#Add text to the screen.
text_2D = viz.addText( 'on the screen', viz.SCREEN )
text_2D.setPosition(.05, .9 ) #2D text only needs x and y.
Reply With Quote