View Single Post
  #2  
Old 04-23-2005, 12:12 PM
mspusch mspusch is offline
WorldViz Team Member
 
Join Date: Feb 2003
Posts: 223
You need to set the appearance mode of your quad to viz.TEXNEAREST. Here is some sample code:

quad = viz.add(viz.TEXQUAD)
tex = viz.add(\'stim-green_123.png\')
quad.texture(tex)

#This will remove mipmapping of the texture
quad.appearance(viz.TEXNEAREST)
Reply With Quote